]> git.sur5r.net Git - openldap/blob - clients/tools/ldapsearch.c
7662f72987e30d54aa20cc4a3dcfb8e70c028377
[openldap] / clients / tools / ldapsearch.c
1 /* ldapsearch -- a tool for searching LDAP directories */
2 /* $OpenLDAP$ */
3 /* This work is part of OpenLDAP Software <http://www.openldap.org/>.
4  *
5  * Copyright 1998-2004 The OpenLDAP Foundation.
6  * Portions Copyright 1998-2003 Kurt D. Zeilenga.
7  * Portions Copyright 1998-2001 Net Boolean Incorporated.
8  * Portions Copyright 2001-2003 IBM Corporation.
9  * All rights reserved.
10  *
11  * Redistribution and use in source and binary forms, with or without
12  * modification, are permitted only as authorized by the OpenLDAP
13  * Public License.
14  *
15  * A copy of this license is available in the file LICENSE in the
16  * top-level directory of the distribution or, alternatively, at
17  * <http://www.OpenLDAP.org/license.html>.
18  */
19 /* Portions Copyright (c) 1992-1996 Regents of the University of Michigan.
20  * All rights reserved.
21  *
22  * Redistribution and use in source and binary forms are permitted
23  * provided that this notice is preserved and that due credit is given
24  * to the University of Michigan at Ann Arbor.  The name of the
25  * University may not be used to endorse or promote products derived
26  * from this software without specific prior written permission.  This
27  * software is provided ``as is'' without express or implied warranty.
28  */
29 /* ACKNOWLEDGEMENTS:
30  * This work was originally developed by the University of Michigan
31  * (as part of U-MICH LDAP).  Additional significant contributors
32  * include:
33  *   Jong Hyuk Choi
34  *   Lynn Moss
35  *   Mikhail Sahalaev
36  *   Kurt D. Zeilenga
37  */
38
39 #include "portable.h"
40
41 #include <stdio.h>
42
43 #include <ac/stdlib.h>
44
45 #include <ac/ctype.h>
46 #include <ac/string.h>
47 #include <ac/unistd.h>
48 #include <ac/errno.h>
49 #include <sys/stat.h>
50
51 #ifdef HAVE_FCNTL_H
52 #include <fcntl.h>
53 #endif
54 #ifdef HAVE_SYS_TYPES_H
55 #include <sys/types.h>
56 #endif
57 #ifdef HAVE_IO_H
58 #include <io.h>
59 #endif
60
61 #include <ldap.h>
62
63 #include "ldif.h"
64 #include "lutil.h"
65 #include "lutil_ldap.h"
66 #include "ldap_defaults.h"
67 #include "ldap_log.h"
68 #include "ldap_pvt.h"
69
70 #include "common.h"
71
72
73 static int scope = LDAP_SCOPE_SUBTREE;
74 static int deref = -1;
75 static int attrsonly;
76 static int timelimit = -1;
77 static int sizelimit = -1;
78
79 static char *def_tmpdir;
80 static char *def_urlpre;
81
82 #if defined(__CYGWIN__) || defined(__MINGW32__)
83 /* Turn off commandline globbing, otherwise you cannot search for
84  * attribute '*'
85  */
86 int _CRT_glob = 0;
87 #endif
88
89 void
90 usage( void )
91 {
92         fprintf( stderr, _("usage: %s [options] [filter [attributes...]]\nwhere:\n"), prog);
93         fprintf( stderr, _("  filter\tRFC-2254 compliant LDAP search filter\n"));
94         fprintf( stderr, _("  attributes\twhitespace-separated list of attribute descriptions\n"));
95         fprintf( stderr, _("    which may include:\n"));
96         fprintf( stderr, _("      1.1   no attributes\n"));
97         fprintf( stderr, _("      *     all user attributes\n"));
98         fprintf( stderr, _("      +     all operational attributes\n"));
99
100
101         fprintf( stderr, _("Search options:\n"));
102         fprintf( stderr, _("  -a deref   one of never (default), always, search, or find\n"));
103         fprintf( stderr, _("  -A         retrieve attribute names only (no values)\n"));
104         fprintf( stderr, _("  -b basedn  base dn for search\n"));
105         fprintf( stderr, _("  -E [!]<ext>[=<extparam>] search extensions (! indicates criticality)\n"));
106 #ifdef LDAP_CONTROL_X_DOMAIN_SCOPE
107         fprintf( stderr, _("             [!]domainScope              (domain scope)\n"));
108 #endif
109         fprintf( stderr, _("             [!]mv=<filter>              (matched values filter)\n"));
110 #ifdef LDAP_CONTROL_PAGEDRESULTS
111         fprintf( stderr, _("             [!]pr=<size>[/prompt|noprompt]   (paged results/prompt)\n"));
112 #endif
113 #ifdef LDAP_CONTROL_SUBENTRIES
114         fprintf( stderr, _("             [!]subentries[=true|false]  (subentries)\n"));
115 #endif
116         fprintf( stderr, _("             [!]sync=ro[/<cookie>]            (LDAP Sync refreshOnly)\n"));
117         fprintf( stderr, _("                     rp[/<cookie>][/<slimit>] (LDAP Sync refreshAndPersist)\n"));
118         fprintf( stderr, _("  -F prefix  URL prefix for files (default: %s)\n"), def_urlpre);
119         fprintf( stderr, _("  -l limit   time limit (in seconds, or \"none\" or \"max\") for search\n"));
120         fprintf( stderr, _("  -L         print responses in LDIFv1 format\n"));
121         fprintf( stderr, _("  -LL        print responses in LDIF format without comments\n"));
122         fprintf( stderr, _("  -LLL       print responses in LDIF format without comments\n"));
123         fprintf( stderr, _("             and version\n"));
124 #ifdef LDAP_SCOPE_SUBORDINATE
125         fprintf( stderr, _("  -s scope   one of base, one, sub or children (search scope)\n"));
126 #else /* ! LDAP_SCOPE_SUBORDINATE */
127         fprintf( stderr, _("  -s scope   one of base, one, or sub (search scope)\n"));
128 #endif /* ! LDAP_SCOPE_SUBORDINATE */
129         fprintf( stderr, _("  -S attr    sort the results by attribute `attr'\n"));
130         fprintf( stderr, _("  -t         write binary values to files in temporary directory\n"));
131         fprintf( stderr, _("  -tt        write all values to files in temporary directory\n"));
132         fprintf( stderr, _("  -T path    write files to directory specified by path (default: %s)\n"), def_tmpdir);
133         fprintf( stderr, _("  -u         include User Friendly entry names in the output\n"));
134         fprintf( stderr, _("  -z limit   size limit (in entries, or \"none\" or \"max\") for search\n"));
135         tool_common_usage();
136         exit( EXIT_FAILURE );
137 }
138
139 static void print_entry LDAP_P((
140         LDAP    *ld,
141         LDAPMessage     *entry,
142         int             attrsonly));
143
144 static void print_reference(
145         LDAP *ld,
146         LDAPMessage *reference );
147
148 static void print_extended(
149         LDAP *ld,
150         LDAPMessage *extended );
151
152 static void print_partial(
153         LDAP *ld,
154         LDAPMessage *partial );
155
156 static int print_result(
157         LDAP *ld,
158         LDAPMessage *result,
159         int search );
160
161 static void print_ctrls(
162         LDAPControl **ctrls );
163
164 static int write_ldif LDAP_P((
165         int type,
166         char *name,
167         char *value,
168         ber_len_t vallen ));
169
170 static int dosearch LDAP_P((
171         LDAP    *ld,
172         char    *base,
173         int             scope,
174         char    *filtpatt,
175         char    *value,
176         char    **attrs,
177         int             attrsonly,
178         LDAPControl **sctrls,
179         LDAPControl **cctrls,
180         struct timeval *timeout,
181         int     sizelimit ));
182
183 static char *tmpdir = NULL;
184 static char *urlpre = NULL;
185 static char     *base = NULL;
186 static char     *sortattr = NULL;
187 static int  includeufn, vals2tmp = 0, ldif = 0;
188
189 static int subentries = 0, valuesReturnFilter = 0;
190 static char     *vrFilter = NULL;
191
192 #ifdef LDAP_CONTROL_X_DOMAIN_SCOPE
193 static int domainScope = 0;
194 #endif
195
196 static int ldapsync = 0;
197 static struct berval sync_cookie = { 0, NULL };
198 static int sync_slimit = -1;
199
200 #ifdef LDAP_CONTROL_PAGEDRESULTS
201 static int pagedResults = 0;
202 static int pagePrompt = 1;
203 static ber_int_t pageSize = 0;
204 static ber_int_t entriesLeft = 0;
205 static ber_int_t morePagedResults = 1;
206 static struct berval cookie = { 0, NULL };
207 static int npagedresponses;
208 static int npagedentries;
209 static int npagedreferences;
210 static int npagedextended;
211 static int npagedpartial;
212
213 static int parse_page_control(
214         LDAP *ld,
215         LDAPMessage *result,
216         struct berval *cookie );
217 #endif
218
219 static void
220 urlize(char *url)
221 {
222         char *p;
223
224         if (*LDAP_DIRSEP != '/') {
225                 for (p = url; *p; p++) {
226                         if (*p == *LDAP_DIRSEP)
227                                 *p = '/';
228                 }
229         }
230 }
231
232
233 const char options[] = "a:Ab:E:F:l:Ls:S:tT:uz:"
234         "Cd:D:e:f:h:H:IkKMnO:p:P:QR:U:vVw:WxX:y:Y:Z";
235
236 int
237 handle_private_option( int i )
238 {
239         int crit, ival;
240         char *control, *cvalue, *next;
241         switch ( i ) {
242         case 'a':       /* set alias deref option */
243                 if ( strcasecmp( optarg, "never" ) == 0 ) {
244                         deref = LDAP_DEREF_NEVER;
245                 } else if ( strncasecmp( optarg, "search", sizeof("search")-1 ) == 0 ) {
246                         deref = LDAP_DEREF_SEARCHING;
247                 } else if ( strncasecmp( optarg, "find", sizeof("find")-1 ) == 0 ) {
248                         deref = LDAP_DEREF_FINDING;
249                 } else if ( strcasecmp( optarg, "always" ) == 0 ) {
250                         deref = LDAP_DEREF_ALWAYS;
251                 } else {
252                         fprintf( stderr,
253                                 _("alias deref should be never, search, find, or always\n") );
254                         usage();
255                 }
256                 break;
257         case 'A':       /* retrieve attribute names only -- no values */
258                 ++attrsonly;
259                 break;
260         case 'b': /* search base */
261                 base = ber_strdup( optarg );
262                 break;
263         case 'E': /* search extensions */
264                 if( protocol == LDAP_VERSION2 ) {
265                         fprintf( stderr, _("%s: -E incompatible with LDAPv%d\n"),
266                                 prog, protocol );
267                         exit( EXIT_FAILURE );
268                 }
269
270                 /* should be extended to support comma separated list of
271                  *      [!]key[=value] parameters, e.g.  -E !foo,bar=567
272                  */
273
274                 crit = 0;
275                 cvalue = NULL;
276                 if( optarg[0] == '!' ) {
277                         crit = 1;
278                         optarg++;
279                 }
280
281                 control = ber_strdup( optarg );
282                 if ( (cvalue = strchr( control, '=' )) != NULL ) {
283                         *cvalue++ = '\0';
284                 }
285
286                 if ( strcasecmp( control, "mv" ) == 0 ) {
287                         /* ValuesReturnFilter control */
288                         if( valuesReturnFilter ) {
289                                 fprintf( stderr,
290                                         _("ValuesReturnFilter previously specified\n"));
291                                 exit( EXIT_FAILURE );
292                         }
293                         valuesReturnFilter= 1 + crit;
294
295                         if ( cvalue == NULL ) {
296                                 fprintf( stderr,
297                                         _("missing filter in ValuesReturnFilter control\n"));
298                                 exit( EXIT_FAILURE );
299                         }
300
301                         vrFilter = cvalue;
302                         protocol = LDAP_VERSION3;
303
304 #ifdef LDAP_CONTROL_PAGEDRESULTS
305                 } else if ( strcasecmp( control, "pr" ) == 0 ) {
306                         int num, tmp;
307                         /* PagedResults control */
308                         if ( pagedResults != 0 ) {
309                                 fprintf( stderr,
310                                         _("PagedResultsControl previously specified\n") );
311                                 exit( EXIT_FAILURE );
312                         }
313
314                         if( cvalue != NULL ) {
315                                 char *promptp;
316
317                                 promptp = strchr( cvalue, '/' );
318                                 if ( promptp != NULL ) {
319                                         *promptp++ = '\0';
320                                         if ( strcasecmp( promptp, "prompt" ) == 0 ) {
321                                                 pagePrompt = 1;
322                                         } else if ( strcasecmp( promptp, "noprompt" ) == 0) {
323                                                 pagePrompt = 0;
324                                         } else {
325                                                 fprintf( stderr,
326                                                         _("Invalid value for PagedResultsControl,"
327                                                         " %s/%s.\n"), cvalue, promptp );
328                                                 exit( EXIT_FAILURE );
329                                         }
330                                 }
331                                 num = sscanf( cvalue, "%d", &tmp );
332                                 if ( num != 1 ) {
333                                         fprintf( stderr,
334                                                 _("Invalid value for PagedResultsControl, %s.\n"),
335                                                 cvalue );
336                                         exit( EXIT_FAILURE );
337                                 }
338                         } else {
339                                 fprintf( stderr, _("Invalid value for PagedResultsControl.\n"),
340                                         cvalue);
341                                 exit( EXIT_FAILURE );
342                         }
343                         pageSize = (ber_int_t) tmp;
344                         pagedResults = 1 + crit;
345
346 #endif
347 #ifdef LDAP_CONTROL_X_DOMAIN_SCOPE
348                 } else if ( strcasecmp( control, "domainScope" ) == 0 ) {
349                         if( domainScope ) {
350                                 fprintf( stderr,
351                                         _("domainScope control previously specified\n"));
352                                 exit( EXIT_FAILURE );
353                         }
354                         if( cvalue != NULL ) {
355                                 fprintf( stderr,
356                                  _("domainScope: no control value expected\n") );
357                                 usage();
358                         }
359
360                         domainScope = 1 + crit;
361 #endif
362 #ifdef LDAP_CONTROL_SUBENTRIES
363                 } else if ( strcasecmp( control, "subentries" ) == 0 ) {
364                         if( subentries ) {
365                                 fprintf( stderr,
366                                         _("subentries control previously specified\n"));
367                                 exit( EXIT_FAILURE );
368                         }
369                         if( cvalue == NULL || strcasecmp( cvalue, "true") == 0 ) {
370                                 subentries = 2;
371                         } else if ( strcasecmp( cvalue, "false") == 0 ) {
372                                 subentries = 1;
373                         } else {
374                                 fprintf( stderr,
375                                         _("subentries control value \"%s\" invalid\n"),
376                                         cvalue );
377                                 exit( EXIT_FAILURE );
378                         }
379                         if( crit ) subentries *= -1;
380 #endif
381
382         } else if ( strcasecmp( control, "sync" ) == 0 ) {
383                         char *cookiep;
384                         char *slimitp;
385                         if ( ldapsync ) {
386                                 fprintf( stderr, _("sync control previously specified\n") );
387                                 exit( EXIT_FAILURE );
388                         }
389                         if ( cvalue == NULL ) {
390                                 fprintf( stderr, _("missing specification of sync control\n"));
391                                 exit( EXIT_FAILURE );
392                         }
393                         if ( strncasecmp( cvalue, "ro", 2 ) == 0 ) {
394                                 ldapsync = LDAP_SYNC_REFRESH_ONLY;
395                                 cookiep = strchr( cvalue, '/' );
396                                 if ( cookiep != NULL ) {
397                                         cookiep++;
398                                         if ( *cookiep != '\0' ) {
399                                                 ber_str2bv( cookiep, 0, 0, &sync_cookie );
400                                         }
401                                 }
402                         } else if ( strncasecmp( cvalue, "rp", 2 ) == 0 ) {
403                                 ldapsync = LDAP_SYNC_REFRESH_AND_PERSIST;
404                                 cookiep = strchr( cvalue, '/' );
405                                 if ( cookiep != NULL ) {
406                                         *cookiep++ = '\0';      
407                                         cvalue = cookiep;
408                                 }
409                                 slimitp = strchr( cvalue, '/' );
410                                 if ( slimitp != NULL ) {
411                                         *slimitp++ = '\0';
412                                 }
413                                 if ( cookiep != NULL && *cookiep != '\0' )
414                                         ber_str2bv( cookiep, 0, 0, &sync_cookie );
415                                 if ( slimitp != NULL && *slimitp != '\0' ) {
416                                         ival = strtol( slimitp, &next, 10 );
417                                         if ( next == NULL || next[0] != '\0' ) {
418                                                 fprintf( stderr, _("Unable to parse sync control value \"%s\"\n"), slimitp );
419                                                 exit( EXIT_FAILURE );
420                                         }
421                                         sync_slimit = ival;
422                                 }
423                         } else {
424                                 fprintf( stderr, _("sync control value \"%s\" invalid\n"),
425                                         cvalue );
426                                 exit( EXIT_FAILURE );
427                         }
428                         if ( crit ) ldapsync *= -1;
429
430                 } else {
431                         fprintf( stderr, _("Invalid search extension name: %s\n"),
432                                 control );
433                         usage();
434                 }
435                 break;
436         case 'F':       /* uri prefix */
437                 if( urlpre ) free( urlpre );
438                 urlpre = strdup( optarg );
439                 break;
440         case 'l':       /* time limit */
441                 if ( strcasecmp( optarg, "none" ) == 0 ) {
442                         timelimit = 0;
443
444                 } else if ( strcasecmp( optarg, "max" ) == 0 ) {
445                         timelimit = LDAP_MAXINT;
446
447                 } else {
448                         ival = strtol( optarg, &next, 10 );
449                         if ( next == NULL || next[0] != '\0' ) {
450                                 fprintf( stderr,
451                                         _("Unable to parse time limit \"%s\"\n"), optarg );
452                                 exit( EXIT_FAILURE );
453                         }
454                         timelimit = ival;
455                 }
456                 if( timelimit < 0 || timelimit > LDAP_MAXINT ) {
457                         fprintf( stderr, _("%s: invalid timelimit (%d) specified\n"),
458                                 prog, timelimit );
459                         exit( EXIT_FAILURE );
460                 }
461                 break;
462         case 'L':       /* print entries in LDIF format */
463                 ++ldif;
464                 break;
465         case 's':       /* search scope */
466                 if ( strncasecmp( optarg, "base", sizeof("base"-1) ) == 0 ) {
467                         scope = LDAP_SCOPE_BASE;
468                 } else if ( strncasecmp( optarg, "one", sizeof("one")-1 ) == 0 ) {
469                         scope = LDAP_SCOPE_ONELEVEL;
470 #ifdef LDAP_SCOPE_SUBORDINATE
471                 } else if (( strcasecmp( optarg, "subordinate" ) == 0 )
472                         || ( strcasecmp( optarg, "children" ) == 0 ))
473                 {
474                         scope = LDAP_SCOPE_SUBORDINATE;
475 #endif
476                 } else if ( strncasecmp( optarg, "sub", sizeof("sub")-1 ) == 0 ) {
477                         scope = LDAP_SCOPE_SUBTREE;
478                 } else {
479                         fprintf( stderr, _("scope should be base, one, or sub\n") );
480                         usage();
481                 }
482                 break;
483         case 'S':       /* sort attribute */
484                 sortattr = strdup( optarg );
485                 break;
486         case 't':       /* write attribute values to TMPDIR files */
487                 ++vals2tmp;
488                 break;
489         case 'T':       /* tmpdir */
490                 if( tmpdir ) free( tmpdir );
491                 tmpdir = strdup( optarg );
492                 break;
493         case 'u':       /* include UFN */
494                 ++includeufn;
495                 break;
496         case 'z':       /* size limit */
497                 if ( strcasecmp( optarg, "none" ) == 0 ) {
498                         sizelimit = 0;
499
500                 } else if ( strcasecmp( optarg, "max" ) == 0 ) {
501                         sizelimit = LDAP_MAXINT;
502
503                 } else {
504                         ival = strtol( optarg, &next, 10 );
505                         if ( next == NULL || next[0] != '\0' ) {
506                                 fprintf( stderr,
507                                         _("Unable to parse size limit \"%s\"\n"), optarg );
508                                 exit( EXIT_FAILURE );
509                         }
510                         sizelimit = ival;
511                 }
512                 if( sizelimit < 0 || sizelimit > LDAP_MAXINT ) {
513                         fprintf( stderr, _("%s: invalid sizelimit (%d) specified\n"),
514                                 prog, sizelimit );
515                         exit( EXIT_FAILURE );
516                 }
517                 break;
518         default:
519                 return 0;
520         }
521         return 1;
522 }
523
524
525 static void
526 private_conn_setup( LDAP *ld )
527 {
528         if (deref != -1 &&
529                 ldap_set_option( ld, LDAP_OPT_DEREF, (void *) &deref )
530                         != LDAP_OPT_SUCCESS )
531         {
532                 fprintf( stderr, _("Could not set LDAP_OPT_DEREF %d\n"), deref );
533                 exit( EXIT_FAILURE );
534         }
535         if (timelimit > 0 &&
536                 ldap_set_option( ld, LDAP_OPT_TIMELIMIT, (void *) &timelimit )
537                         != LDAP_OPT_SUCCESS )
538         {
539                 fprintf( stderr,
540                         _("Could not set LDAP_OPT_TIMELIMIT %d\n"), timelimit );
541                 exit( EXIT_FAILURE );
542         }
543         if (sizelimit > 0 &&
544                 ldap_set_option( ld, LDAP_OPT_SIZELIMIT, (void *) &sizelimit )
545                         != LDAP_OPT_SUCCESS )
546         {
547                 fprintf( stderr,
548                         _("Could not set LDAP_OPT_SIZELIMIT %d\n"), sizelimit );
549                 exit( EXIT_FAILURE );
550         }
551 }
552
553
554 int
555 main( int argc, char **argv )
556 {
557         char            *filtpattern, **attrs = NULL, line[BUFSIZ];
558         FILE            *fp = NULL;
559         int                     rc, i, first;
560         LDAP            *ld = NULL;
561         BerElement      *seber = NULL, *vrber = NULL, *prber = NULL;
562
563         BerElement      *syncber = NULL;
564         struct berval   *syncbvalp = NULL;
565
566         tool_init();
567
568 #ifdef LDAP_CONTROL_PAGEDRESULTS
569         npagedresponses = npagedentries = npagedreferences =
570                 npagedextended = npagedpartial = 0;
571 #endif
572
573         prog = lutil_progname( "ldapsearch", argc, argv );
574
575         if((def_tmpdir = getenv("TMPDIR")) == NULL &&
576            (def_tmpdir = getenv("TMP")) == NULL &&
577            (def_tmpdir = getenv("TEMP")) == NULL )
578         {
579                 def_tmpdir = LDAP_TMPDIR;
580         }
581
582         if ( !*def_tmpdir )
583                 def_tmpdir = LDAP_TMPDIR;
584
585         def_urlpre = malloc( sizeof("file:////") + strlen(def_tmpdir) );
586
587         if( def_urlpre == NULL ) {
588                 perror( "malloc" );
589                 return EXIT_FAILURE;
590         }
591
592         sprintf( def_urlpre, "file:///%s/",
593                 def_tmpdir[0] == *LDAP_DIRSEP ? &def_tmpdir[1] : def_tmpdir );
594
595         urlize( def_urlpre );
596
597         tool_args( argc, argv );
598
599         if (( argc - optind < 1 ) ||
600                 ( *argv[optind] != '(' /*')'*/ &&
601                 ( strchr( argv[optind], '=' ) == NULL ) ) )
602         {
603                 filtpattern = "(objectclass=*)";
604         } else {
605                 filtpattern = strdup( argv[optind++] );
606         }
607
608         if ( argv[optind] != NULL ) {
609                 attrs = &argv[optind];
610         }
611
612         if ( infile != NULL ) {
613                 if ( infile[0] == '-' && infile[1] == '\0' ) {
614                         fp = stdin;
615                 } else if (( fp = fopen( infile, "r" )) == NULL ) {
616                         perror( infile );
617                         return EXIT_FAILURE;
618                 }
619         }
620
621         if ( tmpdir == NULL ) {
622                 tmpdir = def_tmpdir;
623
624                 if ( urlpre == NULL )
625                         urlpre = def_urlpre;
626         }
627
628         if( urlpre == NULL ) {
629                 urlpre = malloc( sizeof("file:////") + strlen(tmpdir) );
630
631                 if( urlpre == NULL ) {
632                         perror( "malloc" );
633                         return EXIT_FAILURE;
634                 }
635
636                 sprintf( urlpre, "file:///%s/",
637                         tmpdir[0] == *LDAP_DIRSEP ? &tmpdir[1] : tmpdir );
638
639                 urlize( urlpre );
640         }
641
642         if ( debug )
643                 ldif_debug = debug;
644
645         ld = tool_conn_setup( 0, &private_conn_setup );
646
647         if ( pw_file || want_bindpw ) {
648                 if ( pw_file ) {
649                         rc = lutil_get_filed_password( pw_file, &passwd );
650                         if( rc ) return EXIT_FAILURE;
651                 } else {
652                         passwd.bv_val = getpassphrase( _("Enter LDAP Password: ") );
653                         passwd.bv_len = passwd.bv_val ? strlen( passwd.bv_val ) : 0;
654                 }
655         }
656
657         tool_bind( ld );
658
659 getNextPage:
660         if ( assertion || authzid || manageDSAit || noop
661 #ifdef LDAP_CONTROL_X_DOMAIN_SCOPE
662                 || domainScope
663 #endif
664 #ifdef LDAP_CONTROL_PAGEDRESULTS
665                 || pagedResults
666 #endif
667                 || ldapsync
668                 || subentries || valuesReturnFilter )
669         {
670                 int err;
671                 int i=0;
672                 LDAPControl c[6];
673
674 #ifdef LDAP_CONTROL_X_DOMAIN_SCOPE
675         if ( domainScope ) {
676                 c[i].ldctl_oid = LDAP_CONTROL_X_DOMAIN_SCOPE;
677                 c[i].ldctl_value.bv_val = NULL;
678                 c[i].ldctl_value.bv_len = 0;
679                 c[i].ldctl_iscritical = domainScope > 1;
680                 i++;
681         }
682 #endif
683
684 #ifdef LDAP_CONTROL_SUBENTRIES
685                 if ( subentries ) {
686                 if (( seber = ber_alloc_t(LBER_USE_DER)) == NULL ) {
687                                 return EXIT_FAILURE;
688                         }
689
690                         err = ber_printf( seber, "b", abs(subentries) == 1 ? 0 : 1 );
691                 if ( err == -1 ) {
692                                 ber_free( seber, 1 );
693                                 fprintf( stderr, _("Subentries control encoding error!\n") );
694                                 return EXIT_FAILURE;
695                         }
696
697                         if ( ber_flatten2( seber, &c[i].ldctl_value, 0 ) == -1 ) {
698                                 return EXIT_FAILURE;
699                         }
700
701                         c[i].ldctl_oid = LDAP_CONTROL_SUBENTRIES;
702                         c[i].ldctl_iscritical = subentries < 1;
703                         i++;
704                 }
705 #endif
706
707                 if ( ldapsync ) {
708                         if (( syncber = ber_alloc_t(LBER_USE_DER)) == NULL ) {
709                                 return EXIT_FAILURE;
710                         }
711
712                         if ( sync_cookie.bv_len == 0 ) {
713                                 err = ber_printf( syncber, "{e}", abs(ldapsync) );
714                         } else {
715                                 err = ber_printf( syncber, "{eO}", abs(ldapsync),
716                                                         &sync_cookie );
717                         }
718
719                         if ( err == LBER_ERROR ) {
720                                 ber_free( syncber, 1 );
721                                 fprintf( stderr, _("ldap sync control encoding error!\n") );
722                                 return EXIT_FAILURE;
723                         }
724
725                         if ( ber_flatten( syncber, &syncbvalp ) == LBER_ERROR ) {
726                                 return EXIT_FAILURE;
727                         }
728
729                         c[i].ldctl_oid = LDAP_CONTROL_SYNC;
730                         c[i].ldctl_value = (*syncbvalp);
731                         c[i].ldctl_iscritical = ldapsync < 0;
732                         i++;
733                 }
734
735                 if ( valuesReturnFilter ) {
736                 if (( vrber = ber_alloc_t(LBER_USE_DER)) == NULL ) {
737                                 return EXIT_FAILURE;
738                         }
739
740                 if ( ( err = ldap_put_vrFilter( vrber, vrFilter ) ) == -1 ) {
741                                 ber_free( vrber, 1 );
742                                 fprintf( stderr, _("Bad ValuesReturnFilter: %s\n"), vrFilter );
743                                 return EXIT_FAILURE;
744                         }
745
746                         if ( ber_flatten2( vrber, &c[i].ldctl_value, 0 ) == -1 ) {
747                                 return EXIT_FAILURE;
748                         }
749
750                         c[i].ldctl_oid = LDAP_CONTROL_VALUESRETURNFILTER;
751                         c[i].ldctl_iscritical = valuesReturnFilter > 1;
752                         i++;
753                 }
754
755 #ifdef LDAP_CONTROL_PAGEDRESULTS
756                 if ( pagedResults ) {
757                         if (( prber = ber_alloc_t(LBER_USE_DER)) == NULL ) {
758                                 return EXIT_FAILURE;
759                         }
760
761                         ber_printf( prber, "{iO}", pageSize, &cookie );
762                         if ( ber_flatten2( prber, &c[i].ldctl_value, 0 ) == -1 ) {
763                                 return EXIT_FAILURE;
764                         }
765                         
766                         c[i].ldctl_oid = LDAP_CONTROL_PAGEDRESULTS;
767                         c[i].ldctl_iscritical = pagedResults > 1;
768                         i++;
769                 }
770 #endif
771
772                 tool_server_controls( ld, c, i );
773
774 #ifdef LDAP_CONTROL_SUBENTRIES
775                 ber_free( seber, 1 );
776 #endif
777                 ber_free( vrber, 1 );
778 #ifdef LDAP_CONTROL_PAGEDRESULTS
779                 ber_free( prber, 1 );
780 #endif
781         }
782         
783         if ( verbose ) {
784                 fprintf( stderr, _("filter%s: %s\nrequesting: "),
785                         infile != NULL ? _(" pattern") : "",
786                         filtpattern );
787
788                 if ( attrs == NULL ) {
789                         fprintf( stderr, _("ALL") );
790                 } else {
791                         for ( i = 0; attrs[ i ] != NULL; ++i ) {
792                                 fprintf( stderr, "%s ", attrs[ i ] );
793                         }
794                 }
795                 fprintf( stderr, "\n" );
796         }
797
798         if ( ldif == 0 ) {
799                 printf( _("# extended LDIF\n") );
800         } else if ( ldif < 3 ) {
801                 printf( _("version: %d\n\n"), 1 );
802         }
803
804         if (ldif < 2 ) {
805                 printf( "#\n" );
806                 printf(_("# LDAPv%d\n"), protocol);
807                 printf(_("# base <%s> with scope %s\n"),
808                         base ? base : "",
809                         ((scope == LDAP_SCOPE_BASE) ? "baseObject"
810                                 : ((scope == LDAP_SCOPE_ONELEVEL) ? "oneLevel"
811 #ifdef LDAP_SCOPE_SUBORDINATE
812                                 : ((scope == LDAP_SCOPE_SUBORDINATE) ? "children"
813 #endif
814                                 : "subtree"
815 #ifdef LDAP_SCOPE_SUBORDINATE
816                                 )
817 #endif
818                                 )));
819                 printf(_("# filter%s: %s\n"), infile != NULL ? _(" pattern") : "",
820                        filtpattern);
821                 printf(_("# requesting: "));
822
823                 if ( attrs == NULL ) {
824                         printf( _("ALL") );
825                 } else {
826                         for ( i = 0; attrs[ i ] != NULL; ++i ) {
827                                 printf( "%s ", attrs[ i ] );
828                         }
829                 }
830
831                 if ( manageDSAit ) {
832                         printf(_("\n# with manageDSAit %scontrol"),
833                                 manageDSAit > 1 ? _("critical ") : "" );
834                 }
835                 if ( noop ) {
836                         printf(_("\n# with noop %scontrol"),
837                                 noop > 1 ? _("critical ") : "" );
838                 }
839                 if ( subentries ) {
840                         printf(_("\n# with subentries %scontrol: %s"),
841                                 subentries < 0 ? _("critical ") : "",
842                                 abs(subentries) == 1 ? "false" : "true" );
843                 }
844                 if ( valuesReturnFilter ) {
845                         printf(_("\n# with valuesReturnFilter %scontrol: %s"),
846                                 valuesReturnFilter > 1 ? _("critical ") : "", vrFilter );
847                 }
848 #ifdef LDAP_CONTROL_PAGEDRESULTS
849                 if ( pagedResults ) {
850                         printf(_("\n# with pagedResults %scontrol: size=%d"),
851                                 (pagedResults > 1) ? _("critical ") : "", 
852                                 pageSize );
853                 }
854 #endif
855
856                 printf( _("\n#\n\n") );
857         }
858
859         if ( infile == NULL ) {
860                 rc = dosearch( ld, base, scope, NULL, filtpattern,
861                         attrs, attrsonly, NULL, NULL, NULL, -1 );
862
863         } else {
864                 rc = 0;
865                 first = 1;
866                 while ( rc == 0 && fgets( line, sizeof( line ), fp ) != NULL ) { 
867                         line[ strlen( line ) - 1 ] = '\0';
868                         if ( !first ) {
869                                 putchar( '\n' );
870                         } else {
871                                 first = 0;
872                         }
873                         rc = dosearch( ld, base, scope, filtpattern, line,
874                                 attrs, attrsonly, NULL, NULL, NULL, -1 );
875                 }
876                 if ( fp != stdin ) {
877                         fclose( fp );
878                 }
879         }
880
881 #ifdef LDAP_CONTROL_PAGEDRESULTS
882         if ( ( rc == LDAP_SUCCESS ) &&  ( pageSize != 0 ) && ( morePagedResults != 0 ) ) {
883                 char    buf[6];
884                 int     i, moreEntries, tmpSize;
885
886                 /* Loop to get the next pages when 
887                  * enter is pressed on the terminal.
888                  */
889                 if ( pagePrompt != 0 ) {
890                         if ( entriesLeft > 0 ) {
891                                 printf( _("Estimate entries: %d\n"), entriesLeft );
892                         }
893                         printf( _("Press [size] Enter for the next {%d|size} entries.\n"),
894                                 (int)pageSize );
895                         i = 0;
896                         moreEntries = getchar();
897                         while ( moreEntries != EOF && moreEntries != '\n' ) { 
898                                 if ( i < (int)sizeof(buf) - 1 ) {
899                                         buf[i] = moreEntries;
900                                         i++;
901                                 }
902                                 moreEntries = getchar();
903                         }
904                         buf[i] = '\0';
905
906                         if ( i > 0 && isdigit( (unsigned char)buf[0] ) ) {
907                                 int num = sscanf( buf, "%d", &tmpSize );
908                                 if ( num != 1 ) {
909                                         fprintf( stderr, _("Invalid value for PagedResultsControl, %s.\n"), buf);
910                                         return EXIT_FAILURE;
911         
912                                 }
913                                 pageSize = (ber_int_t)tmpSize;
914                         }
915                 }
916
917                 goto getNextPage;
918         }
919 #endif
920
921         ldap_unbind_ext( ld, NULL, NULL );
922 #ifdef HAVE_CYRUS_SASL
923         sasl_done();
924 #endif
925 #ifdef HAVE_TLS
926         ldap_pvt_tls_destroy();
927 #endif
928         return( rc );
929 }
930
931
932 static int dosearch(
933         LDAP    *ld,
934         char    *base,
935         int             scope,
936         char    *filtpatt,
937         char    *value,
938         char    **attrs,
939         int             attrsonly,
940         LDAPControl **sctrls,
941         LDAPControl **cctrls,
942         struct timeval *timeout,
943         int sizelimit )
944 {
945         char                    *filter;
946         int                     rc;
947         int                     nresponses;
948         int                     nentries;
949         int                     nreferences;
950         int                     nextended;
951         int                     npartial;
952         LDAPMessage             *res, *msg;
953         ber_int_t               msgid;
954         char                    *retoid = NULL;
955         struct berval           *retdata = NULL;
956         int                     nresponses_psearch = -1;
957         int                     cancel_msgid = -1;
958
959         if( filtpatt != NULL ) {
960                 filter = malloc( strlen( filtpatt ) + strlen( value ) );
961                 if( filter == NULL ) {
962                         perror( "malloc" );
963                         return EXIT_FAILURE;
964                 }
965
966                 sprintf( filter, filtpatt, value );
967
968                 if ( verbose ) {
969                         fprintf( stderr, _("filter: %s\n"), filter );
970                 }
971
972                 if( ldif < 2 ) {
973                         printf( _("#\n# filter: %s\n#\n"), filter );
974                 }
975
976         } else {
977                 filter = value;
978         }
979
980         if ( not ) {
981                 return LDAP_SUCCESS;
982         }
983
984         rc = ldap_search_ext( ld, base, scope, filter, attrs, attrsonly,
985                 sctrls, cctrls, timeout, sizelimit, &msgid );
986
987         if ( filtpatt != NULL ) {
988                 free( filter );
989         }
990
991         if( rc != LDAP_SUCCESS ) {
992                 fprintf( stderr, _("%s: ldap_search_ext: %s (%d)\n"),
993                         prog, ldap_err2string( rc ), rc );
994                 return( rc );
995         }
996
997         nresponses = nentries = nreferences = nextended = npartial = 0;
998
999         res = NULL;
1000
1001         while ((rc = ldap_result( ld, LDAP_RES_ANY,
1002                 sortattr ? LDAP_MSG_ALL : LDAP_MSG_ONE,
1003                 NULL, &res )) > 0 )
1004         {
1005                 if( sortattr ) {
1006                         (void) ldap_sort_entries( ld, &res,
1007                                 ( *sortattr == '\0' ) ? NULL : sortattr, strcasecmp );
1008                 }
1009
1010                 for ( msg = ldap_first_message( ld, res );
1011                         msg != NULL;
1012                         msg = ldap_next_message( ld, msg ) )
1013                 {
1014                         if ( nresponses++ ) putchar('\n');
1015                         if ( nresponses_psearch >= 0 ) 
1016                                 nresponses_psearch++;
1017
1018                         switch( ldap_msgtype( msg ) ) {
1019                         case LDAP_RES_SEARCH_ENTRY:
1020                                 nentries++;
1021                                 print_entry( ld, msg, attrsonly );
1022                                 break;
1023
1024                         case LDAP_RES_SEARCH_REFERENCE:
1025                                 nreferences++;
1026                                 print_reference( ld, msg );
1027                                 break;
1028
1029                         case LDAP_RES_EXTENDED:
1030                                 nextended++;
1031                                 print_extended( ld, msg );
1032
1033                                 if( ldap_msgid( msg ) == 0 ) {
1034                                         /* unsolicited extended operation */
1035                                         goto done;
1036                                 }
1037
1038                                 if ( cancel_msgid != -1 &&
1039                                                 cancel_msgid == ldap_msgid( msg ) ) {
1040                                         printf(_("Cancelled \n"));
1041                                         printf(_("cancel_msgid = %d\n"), cancel_msgid);
1042                                         goto done;
1043                                 }
1044                                 break;
1045
1046                         case LDAP_RES_SEARCH_RESULT:
1047                                 rc = print_result( ld, msg, 1 );
1048 #ifdef LDAP_CONTROL_PAGEDRESULTS
1049                                 if ( pageSize != 0 ) {
1050                                         if ( rc == LDAP_SUCCESS ) {
1051                                                 rc = parse_page_control( ld, msg, &cookie );
1052                                         } else {
1053                                                 morePagedResults = 0;
1054                                         }
1055                                 } else {
1056                                         morePagedResults = 0;
1057                                 }
1058 #endif
1059
1060                                 if ( ldapsync == LDAP_SYNC_REFRESH_AND_PERSIST ) {
1061                                         break;
1062                                 }
1063
1064                                 goto done;
1065
1066                         case LDAP_RES_INTERMEDIATE:
1067                                 npartial++;
1068                                 ldap_parse_intermediate( ld, msg,
1069                                         &retoid, &retdata, NULL, 0 );
1070
1071                                 nresponses_psearch = 0;
1072
1073                                 if ( strcmp( retoid, LDAP_SYNC_INFO ) == 0 ) {
1074                                         printf(_("SyncInfo Received\n"));
1075                                         ldap_memfree( retoid );
1076                                         ber_bvfree( retdata );
1077                                         break;
1078                                 }
1079
1080                                 print_partial( ld, msg );
1081                                 ldap_memfree( retoid );
1082                                 ber_bvfree( retdata );
1083                                 goto done;
1084                         }
1085
1086                         if ( ldapsync && sync_slimit != -1 &&
1087                                         nresponses_psearch >= sync_slimit ) {
1088                                 BerElement *msgidber = NULL;
1089                                 struct berval *msgidvalp = NULL;
1090                                 msgidber = ber_alloc_t(LBER_USE_DER);
1091                                 ber_printf(msgidber, "{i}", msgid);
1092                                 ber_flatten(msgidber, &msgidvalp);
1093                                 ldap_extended_operation(ld, LDAP_EXOP_X_CANCEL,
1094                                                 msgidvalp, NULL, NULL, &cancel_msgid);
1095                                 nresponses_psearch = -1;
1096                         }
1097                 }
1098
1099                 ldap_msgfree( res );
1100         }
1101
1102         if ( rc == -1 ) {
1103                 ldap_perror( ld, "ldap_result" );
1104                 return( rc );
1105         }
1106
1107 done:
1108         ldap_msgfree( res );
1109 #ifdef LDAP_CONTROL_PAGEDRESULTS
1110         if ( pagedResults ) { 
1111                 npagedresponses += nresponses;
1112                 npagedentries += nentries;
1113                 npagedextended += nextended;
1114                 npagedpartial += npartial;
1115                 npagedreferences += nreferences;
1116                 if ( ( morePagedResults == 0 ) && ( ldif < 2 ) ) {
1117                         printf( _("\n# numResponses: %d\n"), npagedresponses );
1118                         if( npagedentries ) printf( _("# numEntries: %d\n"), npagedentries );
1119                         if( npagedextended ) printf( _("# numExtended: %d\n"), npagedextended );
1120                         if( npagedpartial ) printf( _("# numPartial: %d\n"), npagedpartial );
1121                         if( npagedreferences ) printf( _("# numReferences: %d\n"), npagedreferences );
1122                 }
1123         } else
1124 #endif
1125         if ( ldif < 2 ) {
1126                 printf( _("\n# numResponses: %d\n"), nresponses );
1127                 if( nentries ) printf( _("# numEntries: %d\n"), nentries );
1128                 if( nextended ) printf( _("# numExtended: %d\n"), nextended );
1129                 if( npartial ) printf( _("# numPartial: %d\n"), npartial );
1130                 if( nreferences ) printf( _("# numReferences: %d\n"), nreferences );
1131         }
1132
1133         return( rc );
1134 }
1135
1136 /* This is the proposed new way of doing things.
1137  * It is more efficient, but the API is non-standard.
1138  */
1139 static void
1140 print_entry(
1141         LDAP    *ld,
1142         LDAPMessage     *entry,
1143         int             attrsonly)
1144 {
1145         char            *ufn = NULL;
1146         char    tmpfname[ 256 ];
1147         char    url[ 256 ];
1148         int                     i, rc;
1149         BerElement              *ber = NULL;
1150         struct berval           bv, *bvals, **bvp = &bvals;
1151         LDAPControl **ctrls = NULL;
1152         FILE            *tmpfp;
1153
1154         rc = ldap_get_dn_ber( ld, entry, &ber, &bv );
1155
1156         if ( ldif < 2 ) {
1157                 ufn = ldap_dn2ufn( bv.bv_val );
1158                 write_ldif( LDIF_PUT_COMMENT, NULL, ufn, ufn ? strlen( ufn ) : 0 );
1159         }
1160         write_ldif( LDIF_PUT_VALUE, "dn", bv.bv_val, bv.bv_len );
1161
1162         rc = ldap_get_entry_controls( ld, entry, &ctrls );
1163         if( rc != LDAP_SUCCESS ) {
1164                 fprintf(stderr, _("print_entry: %d\n"), rc );
1165                 ldap_perror( ld, "ldap_get_entry_controls" );
1166                 exit( EXIT_FAILURE );
1167         }
1168
1169         if( ctrls ) {
1170                 print_ctrls( ctrls );
1171                 ldap_controls_free( ctrls );
1172         }
1173
1174         if ( includeufn ) {
1175                 if( ufn == NULL ) {
1176                         ufn = ldap_dn2ufn( bv.bv_val );
1177                 }
1178                 write_ldif( LDIF_PUT_VALUE, "ufn", ufn, ufn ? strlen( ufn ) : 0 );
1179         }
1180
1181         if( ufn != NULL ) ldap_memfree( ufn );
1182
1183         if ( attrsonly ) bvp = NULL;
1184
1185         for ( rc = ldap_get_attribute_ber( ld, entry, ber, &bv, bvp );
1186                 rc == LDAP_SUCCESS;
1187                 rc = ldap_get_attribute_ber( ld, entry, ber, &bv, bvp ) )
1188         {
1189                 if (bv.bv_val == NULL) break;
1190
1191                 if ( attrsonly ) {
1192                         write_ldif( LDIF_PUT_NOVALUE, bv.bv_val, NULL, 0 );
1193
1194                 } else if ( bvals ) {
1195                         for ( i = 0; bvals[i].bv_val != NULL; i++ ) {
1196                                 if ( vals2tmp > 1 || ( vals2tmp &&
1197                                         ldif_is_not_printable( bvals[i].bv_val, bvals[i].bv_len )))
1198                                 {
1199                                         int tmpfd;
1200                                         /* write value to file */
1201                                         snprintf( tmpfname, sizeof tmpfname,
1202                                                 "%s" LDAP_DIRSEP "ldapsearch-%s-XXXXXX",
1203                                                 tmpdir, bv.bv_val );
1204                                         tmpfp = NULL;
1205
1206                                         tmpfd = mkstemp( tmpfname );
1207
1208                                         if ( tmpfd < 0  ) {
1209                                                 perror( tmpfname );
1210                                                 continue;
1211                                         }
1212
1213                                         if (( tmpfp = fdopen( tmpfd, "w")) == NULL ) {
1214                                                 perror( tmpfname );
1215                                                 continue;
1216                                         }
1217
1218                                         if ( fwrite( bvals[ i ].bv_val,
1219                                                 bvals[ i ].bv_len, 1, tmpfp ) == 0 )
1220                                         {
1221                                                 perror( tmpfname );
1222                                                 fclose( tmpfp );
1223                                                 continue;
1224                                         }
1225
1226                                         fclose( tmpfp );
1227
1228                                         snprintf( url, sizeof url, "%s%s", urlpre,
1229                                                 &tmpfname[strlen(tmpdir) + sizeof(LDAP_DIRSEP) - 1] );
1230
1231                                         urlize( url );
1232                                         write_ldif( LDIF_PUT_URL, bv.bv_val, url, strlen( url ));
1233
1234                                 } else {
1235                                         write_ldif( LDIF_PUT_VALUE, bv.bv_val,
1236                                                 bvals[ i ].bv_val, bvals[ i ].bv_len );
1237                                 }
1238                         }
1239                         ber_memfree( bvals );
1240                 }
1241         }
1242
1243         if( ber != NULL ) {
1244                 ber_free( ber, 0 );
1245         }
1246 }
1247
1248 static void print_reference(
1249         LDAP *ld,
1250         LDAPMessage *reference )
1251 {
1252         int rc;
1253         char **refs = NULL;
1254         LDAPControl **ctrls;
1255
1256         if( ldif < 2 ) {
1257                 printf(_("# search reference\n"));
1258         }
1259
1260         rc = ldap_parse_reference( ld, reference, &refs, &ctrls, 0 );
1261
1262         if( rc != LDAP_SUCCESS ) {
1263                 ldap_perror(ld, "ldap_parse_reference");
1264                 exit( EXIT_FAILURE );
1265         }
1266
1267         if( refs ) {
1268                 int i;
1269                 for( i=0; refs[i] != NULL; i++ ) {
1270                         write_ldif( ldif ? LDIF_PUT_COMMENT : LDIF_PUT_VALUE,
1271                                 "ref", refs[i], strlen(refs[i]) );
1272                 }
1273                 ber_memvfree( (void **) refs );
1274         }
1275
1276         if( ctrls ) {
1277                 print_ctrls( ctrls );
1278                 ldap_controls_free( ctrls );
1279         }
1280 }
1281
1282 static void print_extended(
1283         LDAP *ld,
1284         LDAPMessage *extended )
1285 {
1286         int rc;
1287         char *retoid = NULL;
1288         struct berval *retdata = NULL;
1289
1290         if( ldif < 2 ) {
1291                 printf(_("# extended result response\n"));
1292         }
1293
1294         rc = ldap_parse_extended_result( ld, extended,
1295                 &retoid, &retdata, 0 );
1296
1297         if( rc != LDAP_SUCCESS ) {
1298                 ldap_perror(ld, "ldap_parse_extended_result");
1299                 exit( EXIT_FAILURE );
1300         }
1301
1302         if ( ldif < 2 ) {
1303                 write_ldif( ldif ? LDIF_PUT_COMMENT : LDIF_PUT_VALUE,
1304                         "extended", retoid, retoid ? strlen(retoid) : 0 );
1305         }
1306         ber_memfree( retoid );
1307
1308         if(retdata) {
1309                 if ( ldif < 2 ) {
1310                         write_ldif( ldif ? LDIF_PUT_COMMENT : LDIF_PUT_BINARY,
1311                                 "data", retdata->bv_val, retdata->bv_len );
1312                 }
1313                 ber_bvfree( retdata );
1314         }
1315
1316         print_result( ld, extended, 0 );
1317 }
1318
1319 static void print_partial(
1320         LDAP *ld,
1321         LDAPMessage *partial )
1322 {
1323         int rc;
1324         char *retoid = NULL;
1325         struct berval *retdata = NULL;
1326         LDAPControl **ctrls = NULL;
1327
1328         if( ldif < 2 ) {
1329                 printf(_("# extended partial response\n"));
1330         }
1331
1332         rc = ldap_parse_intermediate( ld, partial,
1333                 &retoid, &retdata, &ctrls, 0 );
1334
1335         if( rc != LDAP_SUCCESS ) {
1336                 ldap_perror(ld, "ldap_parse_intermediate");
1337                 exit( EXIT_FAILURE );
1338         }
1339
1340         if ( ldif < 2 ) {
1341                 write_ldif( ldif ? LDIF_PUT_COMMENT : LDIF_PUT_VALUE,
1342                         "partial", retoid, retoid ? strlen(retoid) : 0 );
1343         }
1344
1345         ber_memfree( retoid );
1346
1347         if( retdata ) {
1348                 if ( ldif < 2 ) {
1349                         write_ldif( ldif ? LDIF_PUT_COMMENT : LDIF_PUT_BINARY,
1350                                 "data", retdata->bv_val, retdata->bv_len );
1351                 }
1352
1353                 ber_bvfree( retdata );
1354         }
1355
1356         if( ctrls ) {
1357                 print_ctrls( ctrls );
1358                 ldap_controls_free( ctrls );
1359         }
1360 }
1361
1362 static int print_result(
1363         LDAP *ld,
1364         LDAPMessage *result, int search )
1365 {
1366         int rc;
1367         int err;
1368         char *matcheddn = NULL;
1369         char *text = NULL;
1370         char **refs = NULL;
1371         LDAPControl **ctrls = NULL;
1372
1373         if( search ) {
1374                 if ( ldif < 2 ) {
1375                         printf(_("# search result\n"));
1376                 }
1377                 if ( ldif < 1 ) {
1378                         printf("%s: %d\n", _("search"), ldap_msgid(result) );
1379                 }
1380         }
1381
1382         rc = ldap_parse_result( ld, result,
1383                 &err, &matcheddn, &text, &refs, &ctrls, 0 );
1384
1385         if( rc != LDAP_SUCCESS ) {
1386                 ldap_perror(ld, "ldap_parse_result");
1387                 exit( EXIT_FAILURE );
1388         }
1389
1390
1391         if( !ldif ) {
1392                 printf( _("result: %d %s\n"), err, ldap_err2string(err) );
1393
1394         } else if ( err != LDAP_SUCCESS ) {
1395                 fprintf( stderr, "%s (%d)\n", ldap_err2string(err), err );
1396         }
1397
1398         if( matcheddn ) {
1399                 if( *matcheddn ) {
1400                 if( !ldif ) {
1401                         write_ldif( LDIF_PUT_VALUE,
1402                                 "matchedDN", matcheddn, strlen(matcheddn) );
1403                 } else {
1404                         fprintf( stderr, _("Matched DN: %s\n"), matcheddn );
1405                 }
1406                 }
1407
1408                 ber_memfree( matcheddn );
1409         }
1410
1411         if( text ) {
1412                 if( *text ) {
1413                 if( !ldif ) {
1414                         write_ldif( LDIF_PUT_TEXT, "text",
1415                                 text, strlen(text) );
1416                 } else {
1417                         fprintf( stderr, _("Additional information: %s\n"), text );
1418                 }
1419                 }
1420
1421                 ber_memfree( text );
1422         }
1423
1424         if( refs ) {
1425                 int i;
1426                 for( i=0; refs[i] != NULL; i++ ) {
1427                         if( !ldif ) {
1428                                 write_ldif( LDIF_PUT_VALUE, "ref", refs[i], strlen(refs[i]) );
1429                         } else {
1430                                 fprintf( stderr, _("Referral: %s\n"), refs[i] );
1431                         }
1432                 }
1433
1434                 ber_memvfree( (void **) refs );
1435         }
1436
1437         if( ctrls ) {
1438                 print_ctrls( ctrls );
1439                 ldap_controls_free( ctrls );
1440         }
1441
1442         return err;
1443 }
1444
1445 static void print_ctrls(
1446         LDAPControl **ctrls )
1447 {
1448         int i;
1449         for(i=0; ctrls[i] != NULL; i++ ) {
1450                 /* control: OID criticality base64value */
1451                 struct berval *b64 = NULL;
1452                 ber_len_t len;
1453                 char *str;
1454
1455                 len = ldif ? 2 : 0;
1456                 len += strlen( ctrls[i]->ldctl_oid );
1457
1458                 /* add enough for space after OID and the critical value itself */
1459                 len += ctrls[i]->ldctl_iscritical
1460                         ? sizeof("true") : sizeof("false");
1461
1462                 /* convert to base64 */
1463                 if( ctrls[i]->ldctl_value.bv_len ) {
1464                         b64 = ber_memalloc( sizeof(struct berval) );
1465                         
1466                         b64->bv_len = LUTIL_BASE64_ENCODE_LEN(
1467                                 ctrls[i]->ldctl_value.bv_len ) + 1;
1468                         b64->bv_val = ber_memalloc( b64->bv_len + 1 );
1469
1470                         b64->bv_len = lutil_b64_ntop(
1471                                 (unsigned char *) ctrls[i]->ldctl_value.bv_val,
1472                                 ctrls[i]->ldctl_value.bv_len,
1473                                 b64->bv_val, b64->bv_len );
1474                 }
1475
1476                 if( b64 ) {
1477                         len += 1 + b64->bv_len;
1478                 }
1479
1480                 str = malloc( len + 1 );
1481                 if ( ldif ) {
1482                         strcpy( str, ": " );
1483                 } else {
1484                         str[0] = '\0';
1485                 }
1486                 strcat( str, ctrls[i]->ldctl_oid );
1487                 strcat( str, ctrls[i]->ldctl_iscritical
1488                         ? " true" : " false" );
1489
1490                 if( b64 ) {
1491                         strcat(str, " ");
1492                         strcat(str, b64->bv_val );
1493                 }
1494
1495                 if ( ldif < 2 ) {
1496                         write_ldif( ldif ? LDIF_PUT_COMMENT : LDIF_PUT_VALUE,
1497                                 "control", str, len );
1498                 }
1499
1500                 free( str );
1501                 ber_bvfree( b64 );
1502         }
1503 }
1504
1505 static int
1506 write_ldif( int type, char *name, char *value, ber_len_t vallen )
1507 {
1508         char    *ldif;
1509
1510         if (( ldif = ldif_put( type, name, value, vallen )) == NULL ) {
1511                 return( -1 );
1512         }
1513
1514         fputs( ldif, stdout );
1515         ber_memfree( ldif );
1516
1517         return( 0 );
1518 }
1519
1520
1521 #ifdef LDAP_CONTROL_PAGEDRESULTS
1522 static int 
1523 parse_page_control(
1524         LDAP *ld,
1525         LDAPMessage *result,
1526         struct berval *cookie )
1527 {
1528         int rc;
1529         int err;
1530         LDAPControl **ctrl = NULL;
1531         LDAPControl *ctrlp = NULL;
1532         BerElement *ber;
1533         ber_tag_t tag;
1534         struct berval servercookie = { 0, NULL };
1535
1536         rc = ldap_parse_result( ld, result,
1537                 &err, NULL, NULL, NULL, &ctrl, 0 );
1538
1539         if( rc != LDAP_SUCCESS ) {
1540                 ldap_perror(ld, "ldap_parse_result");
1541                 exit( EXIT_FAILURE );
1542         }
1543
1544         if ( err != LDAP_SUCCESS ) {
1545                 fprintf( stderr, "%s (%d)\n", ldap_err2string(err), err );
1546         }
1547
1548         if( ctrl ) {
1549                 /* Parse the control value
1550                  * searchResult ::= SEQUENCE {
1551                  *              size    INTEGER (0..maxInt),
1552                  *                              -- result set size estimate from server - unused
1553                  *              cookie  OCTET STRING
1554                  * }
1555                  */
1556                 ctrlp = *ctrl;
1557                 ber = ber_init( &ctrlp->ldctl_value );
1558                 if ( ber == NULL ) {
1559                         fprintf( stderr, _("Internal error.\n") );
1560                         return EXIT_FAILURE;
1561                 }
1562
1563                 tag = ber_scanf( ber, "{im}", &entriesLeft, &servercookie );
1564                 ber_dupbv( cookie, &servercookie );
1565                 (void) ber_free( ber, 1 );
1566
1567                 if( tag == LBER_ERROR ) {
1568                         fprintf( stderr,
1569                                 _("Paged results response control could not be decoded.\n") );
1570                         return EXIT_FAILURE;
1571                 }
1572
1573                 if( entriesLeft < 0 ) {
1574                         fprintf( stderr,
1575                                 _("Invalid entries estimate in paged results response.\n") );
1576                         return EXIT_FAILURE;
1577                 }
1578
1579                 if ( servercookie.bv_len == 0 ) {
1580                         morePagedResults = 0;
1581                 }
1582
1583                 ldap_controls_free( ctrl );
1584
1585         } else {
1586                 morePagedResults = 0;
1587         }
1588
1589         return err;
1590 }
1591 #endif