]> git.sur5r.net Git - openldap/blob - libraries/libldap/url.c
Add LDAP URL critical extension counter support. lud_crit_exts
[openldap] / libraries / libldap / url.c
1 /* $OpenLDAP$ */
2 /*
3  * Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
4  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
5  */
6 /*  Portions
7  *  Copyright (c) 1996 Regents of the University of Michigan.
8  *  All rights reserved.
9  *
10  *  LIBLDAP url.c -- LDAP URL (RFC 2255) related routines
11  *
12  *  LDAP URLs look like this:
13  *    ldap[is]://host:port[/[dn[?[attributes][?[scope][?[filter][?exts]]]]]]
14  *
15  *  where:
16  *   attributes is a comma separated list
17  *   scope is one of these three strings:  base one sub (default=base)
18  *   filter is an string-represented filter as in RFC 2254
19  *
20  *  e.g.,  ldap://host:port/dc=com?o,cn?base?o=openldap?extension
21  *
22  *  We also tolerate URLs that look like: <ldapurl> and <URL:ldapurl>
23  */
24
25 #include "portable.h"
26
27 #include <stdio.h>
28
29 #include <ac/stdlib.h>
30
31 #include <ac/socket.h>
32 #include <ac/string.h>
33 #include <ac/time.h>
34
35 #include "ldap-int.h"
36
37
38 /* local functions */
39 static const char* skip_url_prefix LDAP_P((
40         const char *url,
41         int *enclosedp,
42         const char **scheme ));
43
44 int ldap_pvt_url_scheme2proto( const char *scheme )
45 {
46         assert( scheme );
47
48         if( scheme == NULL ) {
49                 return -1;
50         }
51
52         if( strcmp("ldap", scheme) == 0 ) {
53                 return LDAP_PROTO_TCP;
54         }
55
56         if( strcmp("ldapi", scheme) == 0 ) {
57                 return LDAP_PROTO_IPC;
58         }
59
60         if( strcmp("ldaps", scheme) == 0 ) {
61                 return LDAP_PROTO_TCP;
62         }
63
64         return -1;
65 }
66
67 int ldap_pvt_url_scheme2tls( const char *scheme )
68 {
69         assert( scheme );
70
71         if( scheme == NULL ) {
72                 return -1;
73         }
74
75         return strcmp("ldaps", scheme) == 0;
76 }
77
78 int
79 ldap_is_ldap_url( LDAP_CONST char *url )
80 {
81         int     enclosed;
82         const char * scheme;
83
84         if( url == NULL ) {
85                 return 0;
86         }
87
88         if( skip_url_prefix( url, &enclosed, &scheme ) == NULL ) {
89                 return 0;
90         }
91
92         return 1;
93 }
94
95 int
96 ldap_is_ldaps_url( LDAP_CONST char *url )
97 {
98         int     enclosed;
99         const char * scheme;
100
101         if( url == NULL ) {
102                 return 0;
103         }
104
105         if( skip_url_prefix( url, &enclosed, &scheme ) == NULL ) {
106                 return 0;
107         }
108
109         return strcmp(scheme, "ldaps") == 0;
110 }
111
112 int
113 ldap_is_ldapi_url( LDAP_CONST char *url )
114 {
115         int     enclosed;
116         const char * scheme;
117
118         if( url == NULL ) {
119                 return 0;
120         }
121
122         if( skip_url_prefix( url, &enclosed, &scheme ) == NULL ) {
123                 return 0;
124         }
125
126         return strcmp(scheme, "ldapi") == 0;
127 }
128
129 static const char*
130 skip_url_prefix(
131         const char *url,
132         int *enclosedp,
133         const char **scheme )
134 {
135 /*
136  * return non-zero if this looks like a LDAP URL; zero if not
137  * if non-zero returned, *urlp will be moved past "ldap://" part of URL
138  */
139         const char *p;
140
141         if ( url == NULL ) {
142                 return( NULL );
143         }
144
145         p = url;
146
147         /* skip leading '<' (if any) */
148         if ( *p == '<' ) {
149                 *enclosedp = 1;
150                 ++p;
151         } else {
152                 *enclosedp = 0;
153         }
154
155         /* skip leading "URL:" (if any) */
156         if ( strncasecmp( p, LDAP_URL_URLCOLON, LDAP_URL_URLCOLON_LEN ) == 0 ) {
157                 p += LDAP_URL_URLCOLON_LEN;
158         }
159
160         /* check for "ldap://" prefix */
161         if ( strncasecmp( p, LDAP_URL_PREFIX, LDAP_URL_PREFIX_LEN ) == 0 ) {
162                 /* skip over "ldap://" prefix and return success */
163                 p += LDAP_URL_PREFIX_LEN;
164                 *scheme = "ldap";
165                 return( p );
166         }
167
168         /* check for "ldaps://" prefix */
169         if ( strncasecmp( p, LDAPS_URL_PREFIX, LDAPS_URL_PREFIX_LEN ) == 0 ) {
170                 /* skip over "ldaps://" prefix and return success */
171                 p += LDAPS_URL_PREFIX_LEN;
172                 *scheme = "ldaps";
173                 return( p );
174         }
175
176         /* check for "ldapi://" prefix */
177         if ( strncasecmp( p, LDAPI_URL_PREFIX, LDAPI_URL_PREFIX_LEN ) == 0 ) {
178                 /* skip over "ldapi://" prefix and return success */
179                 p += LDAPI_URL_PREFIX_LEN;
180                 *scheme = "ldapi";
181                 return( p );
182         }
183
184         return( NULL );
185 }
186
187
188 static int str2scope( const char *p )
189 {
190         if ( strcasecmp( p, "one" ) == 0 ) {
191                 return LDAP_SCOPE_ONELEVEL;
192
193         } else if ( strcasecmp( p, "onetree" ) == 0 ) {
194                 return LDAP_SCOPE_ONELEVEL;
195
196         } else if ( strcasecmp( p, "base" ) == 0 ) {
197                 return LDAP_SCOPE_BASE;
198
199         } else if ( strcasecmp( p, "sub" ) == 0 ) {
200                 return LDAP_SCOPE_SUBTREE;
201
202         } else if ( strcasecmp( p, "subtree" ) == 0 ) {
203                 return LDAP_SCOPE_SUBTREE;
204         }
205
206         return( -1 );
207 }
208
209
210 int
211 ldap_url_parse( LDAP_CONST char *url_in, LDAPURLDesc **ludpp )
212 {
213 /*
214  *  Pick apart the pieces of an LDAP URL.
215  */
216
217         LDAPURLDesc     *ludp;
218         char    *p, *q, *r;
219         int             i, enclosed;
220         const char *scheme = NULL;
221         const char *url_tmp;
222         char *url;
223
224         if( url_in == NULL && ludpp == NULL ) {
225                 return LDAP_URL_ERR_PARAM;
226         }
227
228 #ifndef LDAP_INT_IN_KERNEL
229         /* Global options may not be created yet
230          * We can't test if the global options are initialized
231          * because a call to LDAP_INT_GLOBAL_OPT() will try to allocate
232          * the options and cause infinite recursion
233          */
234         Debug( LDAP_DEBUG_TRACE, "ldap_url_parse(%s)\n", url_in, 0, 0 );
235 #endif
236
237         *ludpp = NULL;  /* pessimistic */
238
239         url_tmp = skip_url_prefix( url_in, &enclosed, &scheme );
240
241         if ( url_tmp == NULL ) {
242                 return LDAP_URL_ERR_BADSCHEME;
243         }
244
245         assert( scheme );
246
247         /* make working copy of the remainder of the URL */
248         url = LDAP_STRDUP( url_tmp );
249         if ( url == NULL ) {
250                 return LDAP_URL_ERR_MEM;
251         }
252
253         if ( enclosed ) {
254                 p = &url[strlen(url)-1];
255
256                 if( *p != '>' ) {
257                         LDAP_FREE( url );
258                         return LDAP_URL_ERR_BADENCLOSURE;
259                 }
260
261                 *p = '\0';
262         }
263
264         /* allocate return struct */
265         ludp = (LDAPURLDesc *)LDAP_CALLOC( 1, sizeof( LDAPURLDesc ));
266
267         if ( ludp == NULL ) {
268                 LDAP_FREE( url );
269                 return LDAP_URL_ERR_MEM;
270         }
271
272         ludp->lud_next = NULL;
273         ludp->lud_host = NULL;
274         ludp->lud_port = LDAP_PORT;
275         ludp->lud_dn = NULL;
276         ludp->lud_attrs = NULL;
277         ludp->lud_filter = NULL;
278         ludp->lud_scope = LDAP_SCOPE_BASE;
279         ludp->lud_filter = NULL;
280         ludp->lud_exts = NULL;
281
282         ludp->lud_scheme = LDAP_STRDUP( scheme );
283
284         if ( ludp->lud_scheme == NULL ) {
285                 LDAP_FREE( url );
286                 ldap_free_urldesc( ludp );
287                 return LDAP_URL_ERR_MEM;
288         }
289
290         if( strcasecmp( ludp->lud_scheme, "ldaps" ) == 0 ) {
291                 ludp->lud_port = LDAPS_PORT;
292         }
293
294         /* scan forward for '/' that marks end of hostport and begin. of dn */
295         p = strchr( url, '/' );
296
297         if( p != NULL ) {
298                 /* terminate hostport; point to start of dn */
299                 *p++ = '\0';
300         }
301
302         /* IPv6 syntax with [ip address]:port */
303         if ( *url == '[' ) {
304                 r = strchr( url, ']' );
305                 if ( r == NULL ) {
306                         LDAP_FREE( url );
307                         ldap_free_urldesc( ludp );
308                         return LDAP_URL_ERR_BADURL;
309                 }
310                 *r++ = '\0';
311                 q = strchr( r, ':' );
312         } else {
313                 q = strchr( url, ':' );
314         }
315
316         if ( q != NULL ) {
317                 *q++ = '\0';
318                 ldap_pvt_hex_unescape( q );
319
320                 if( *q == '\0' ) {
321                         LDAP_FREE( url );
322                         ldap_free_urldesc( ludp );
323                         return LDAP_URL_ERR_BADURL;
324                 }
325
326                 ludp->lud_port = atoi( q );
327         }
328
329         ldap_pvt_hex_unescape( url );
330
331         /* If [ip address]:port syntax, url is [ip and we skip the [ */
332         ludp->lud_host = LDAP_STRDUP( url + ( *url == '[' ) );
333
334         if( ludp->lud_host == NULL ) {
335                 LDAP_FREE( url );
336                 ldap_free_urldesc( ludp );
337                 return LDAP_URL_ERR_MEM;
338         }
339
340         /*
341          * Kludge.  ldap://111.222.333.444:389??cn=abc,o=company
342          *
343          * On early Novell releases, search references/referrals were returned
344          * in this format, i.e., the dn was kind of in the scope position,
345          * but the required slash is missing. The whole thing is illegal syntax,
346          * but we need to account for it. Fortunately it can't be confused with
347          * anything real.
348          */
349         if( (p == NULL) && (q != NULL) && ((q = strchr( q, '?')) != NULL)) {
350                 q++;            
351                 /* ? immediately followed by question */
352                 if( *q == '?') {
353                         q++;
354                         if( *q != '\0' ) {
355                                 /* parse dn part */
356                                 ldap_pvt_hex_unescape( q );
357                                 ludp->lud_dn = LDAP_STRDUP( q );
358                         } else {
359                                 ludp->lud_dn = LDAP_STRDUP( "" );
360                         }
361
362                         if( ludp->lud_dn == NULL ) {
363                                 LDAP_FREE( url );
364                                 ldap_free_urldesc( ludp );
365                                 return LDAP_URL_ERR_MEM;
366                         }
367                 }
368         }
369
370         if( p == NULL ) {
371                 LDAP_FREE( url );
372                 *ludpp = ludp;
373                 return LDAP_URL_SUCCESS;
374         }
375
376         /* scan forward for '?' that may marks end of dn */
377         q = strchr( p, '?' );
378
379         if( q != NULL ) {
380                 /* terminate dn part */
381                 *q++ = '\0';
382         }
383
384         if( *p != '\0' ) {
385                 /* parse dn part */
386                 ldap_pvt_hex_unescape( p );
387                 ludp->lud_dn = LDAP_STRDUP( p );
388         } else {
389                 ludp->lud_dn = LDAP_STRDUP( "" );
390         }
391
392         if( ludp->lud_dn == NULL ) {
393                 LDAP_FREE( url );
394                 ldap_free_urldesc( ludp );
395                 return LDAP_URL_ERR_MEM;
396         }
397
398         if( q == NULL ) {
399                 /* no more */
400                 LDAP_FREE( url );
401                 *ludpp = ludp;
402                 return LDAP_URL_SUCCESS;
403         }
404
405         /* scan forward for '?' that may marks end of attributes */
406         p = q;
407         q = strchr( p, '?' );
408
409         if( q != NULL ) {
410                 /* terminate attributes part */
411                 *q++ = '\0';
412         }
413
414         if( *p != '\0' ) {
415                 /* parse attributes */
416                 ldap_pvt_hex_unescape( p );
417                 ludp->lud_attrs = ldap_str2charray( p, "," );
418
419                 if( ludp->lud_attrs == NULL ) {
420                         LDAP_FREE( url );
421                         ldap_free_urldesc( ludp );
422                         return LDAP_URL_ERR_BADATTRS;
423                 }
424         }
425
426         if ( q == NULL ) {
427                 /* no more */
428                 LDAP_FREE( url );
429                 *ludpp = ludp;
430                 return LDAP_URL_SUCCESS;
431         }
432
433         /* scan forward for '?' that may marks end of scope */
434         p = q;
435         q = strchr( p, '?' );
436
437         if( q != NULL ) {
438                 /* terminate the scope part */
439                 *q++ = '\0';
440         }
441
442         if( *p != '\0' ) {
443                 /* parse the scope */
444                 ldap_pvt_hex_unescape( p );
445                 ludp->lud_scope = str2scope( p );
446
447                 if( ludp->lud_scope == -1 ) {
448                         LDAP_FREE( url );
449                         ldap_free_urldesc( ludp );
450                         return LDAP_URL_ERR_BADSCOPE;
451                 }
452         }
453
454         if ( q == NULL ) {
455                 /* no more */
456                 LDAP_FREE( url );
457                 *ludpp = ludp;
458                 return LDAP_URL_SUCCESS;
459         }
460
461         /* scan forward for '?' that may marks end of filter */
462         p = q;
463         q = strchr( p, '?' );
464
465         if( q != NULL ) {
466                 /* terminate the filter part */
467                 *q++ = '\0';
468         }
469
470         if( *p != '\0' ) {
471                 /* parse the filter */
472                 ldap_pvt_hex_unescape( p );
473
474                 if( ! *p ) {
475                         /* missing filter */
476                         LDAP_FREE( url );
477                         ldap_free_urldesc( ludp );
478                         return LDAP_URL_ERR_BADFILTER;
479                 }
480
481                 LDAP_FREE( ludp->lud_filter );
482                 ludp->lud_filter = LDAP_STRDUP( p );
483
484                 if( ludp->lud_filter == NULL ) {
485                         LDAP_FREE( url );
486                         ldap_free_urldesc( ludp );
487                         return LDAP_URL_ERR_MEM;
488                 }
489         }
490
491         if ( q == NULL ) {
492                 /* no more */
493                 LDAP_FREE( url );
494                 *ludpp = ludp;
495                 return LDAP_URL_SUCCESS;
496         }
497
498         /* scan forward for '?' that may marks end of extensions */
499         p = q;
500         q = strchr( p, '?' );
501
502         if( q != NULL ) {
503                 /* extra '?' */
504                 LDAP_FREE( url );
505                 ldap_free_urldesc( ludp );
506                 return LDAP_URL_ERR_BADURL;
507         }
508
509         /* parse the extensions */
510         ludp->lud_exts = ldap_str2charray( p, "," );
511
512         if( ludp->lud_exts == NULL ) {
513                 LDAP_FREE( url );
514                 ldap_free_urldesc( ludp );
515                 return LDAP_URL_ERR_BADEXTS;
516         }
517
518         for( i=0; ludp->lud_exts[i] != NULL; i++ ) {
519                 ldap_pvt_hex_unescape( ludp->lud_exts[i] );
520
521                 if( *ludp->lud_exts[i] == '!' ) {
522                         /* count the number of critical extensions */
523                         ludp->lud_crit_exts++;
524                 }
525         }
526
527         if( i == 0 ) {
528                 /* must have 1 or more */
529                 ldap_charray_free( ludp->lud_exts );
530                 LDAP_FREE( url );
531                 ldap_free_urldesc( ludp );
532                 return LDAP_URL_ERR_BADEXTS;
533         }
534
535         /* no more */
536         *ludpp = ludp;
537         LDAP_FREE( url );
538         return LDAP_URL_SUCCESS;
539 }
540
541 LDAPURLDesc *
542 ldap_url_dup ( LDAPURLDesc *ludp )
543 {
544         LDAPURLDesc *dest;
545
546         if ( ludp == NULL ) {
547                 return NULL;
548         }
549
550         dest = LDAP_MALLOC( sizeof(LDAPURLDesc) );
551         if (dest == NULL)
552                 return NULL;
553         
554         *dest = *ludp;
555         dest->lud_scheme = NULL;
556         dest->lud_host = NULL;
557         dest->lud_dn = NULL;
558         dest->lud_filter = NULL;
559         dest->lud_attrs = NULL;
560         dest->lud_exts = NULL;
561         dest->lud_next = NULL;
562
563         if ( ludp->lud_scheme != NULL ) {
564                 dest->lud_scheme = LDAP_STRDUP( ludp->lud_scheme );
565                 if (dest->lud_scheme == NULL) {
566                         ldap_free_urldesc(dest);
567                         return NULL;
568                 }
569         }
570
571         if ( ludp->lud_host != NULL ) {
572                 dest->lud_host = LDAP_STRDUP( ludp->lud_host );
573                 if (dest->lud_host == NULL) {
574                         ldap_free_urldesc(dest);
575                         return NULL;
576                 }
577         }
578
579         if ( ludp->lud_dn != NULL ) {
580                 dest->lud_dn = LDAP_STRDUP( ludp->lud_dn );
581                 if (dest->lud_dn == NULL) {
582                         ldap_free_urldesc(dest);
583                         return NULL;
584                 }
585         }
586
587         if ( ludp->lud_filter != NULL ) {
588                 dest->lud_filter = LDAP_STRDUP( ludp->lud_filter );
589                 if (dest->lud_filter == NULL) {
590                         ldap_free_urldesc(dest);
591                         return NULL;
592                 }
593         }
594
595         if ( ludp->lud_attrs != NULL ) {
596                 dest->lud_attrs = ldap_charray_dup( ludp->lud_attrs );
597                 if (dest->lud_attrs == NULL) {
598                         ldap_free_urldesc(dest);
599                         return NULL;
600                 }
601         }
602
603         if ( ludp->lud_exts != NULL ) {
604                 dest->lud_exts = ldap_charray_dup( ludp->lud_exts );
605                 if (dest->lud_exts == NULL) {
606                         ldap_free_urldesc(dest);
607                         return NULL;
608                 }
609         }
610
611         return dest;
612 }
613
614 LDAPURLDesc *
615 ldap_url_duplist (LDAPURLDesc *ludlist)
616 {
617         LDAPURLDesc *dest, *tail, *ludp, *newludp;
618
619         dest = NULL;
620         tail = NULL;
621         for (ludp = ludlist; ludp != NULL; ludp = ludp->lud_next) {
622                 newludp = ldap_url_dup(ludp);
623                 if (newludp == NULL) {
624                         ldap_free_urllist(dest);
625                         return NULL;
626                 }
627                 if (tail == NULL)
628                         dest = newludp;
629                 else
630                         tail->lud_next = newludp;
631                 tail = newludp;
632         }
633         return dest;
634 }
635
636 int
637 ldap_url_parselist (LDAPURLDesc **ludlist, const char *url )
638 {
639         int i, rc;
640         LDAPURLDesc *ludp;
641         char **urls;
642
643         *ludlist = NULL;
644
645         if (url == NULL)
646                 return LDAP_PARAM_ERROR;
647
648         urls = ldap_str2charray((char *)url, ", ");
649         if (urls == NULL)
650                 return LDAP_NO_MEMORY;
651
652         /* count the URLs... */
653         for (i = 0; urls[i] != NULL; i++) ;
654         /* ...and put them in the "stack" backward */
655         while (--i >= 0) {
656                 rc = ldap_url_parse( urls[i], &ludp );
657                 if ( rc != 0 ) {
658                         ldap_charray_free(urls);
659                         ldap_free_urllist(*ludlist);
660                         *ludlist = NULL;
661                         return rc;
662                 }
663                 ludp->lud_next = *ludlist;
664                 *ludlist = ludp;
665         }
666         ldap_charray_free(urls);
667         return LDAP_SUCCESS;
668 }
669
670 int
671 ldap_url_parsehosts(
672         LDAPURLDesc **ludlist,
673         const char *hosts,
674         int port )
675 {
676         int i;
677         LDAPURLDesc *ludp;
678         char **specs, *p;
679
680         *ludlist = NULL;
681
682         if (hosts == NULL)
683                 return LDAP_PARAM_ERROR;
684
685         specs = ldap_str2charray((char *)hosts, ", ");
686         if (specs == NULL)
687                 return LDAP_NO_MEMORY;
688
689         /* count the URLs... */
690         for (i = 0; specs[i] != NULL; i++) /* EMPTY */;
691
692         /* ...and put them in the "stack" backward */
693         while (--i >= 0) {
694                 ludp = LDAP_CALLOC( 1, sizeof(LDAPURLDesc) );
695                 if (ludp == NULL) {
696                         ldap_charray_free(specs);
697                         ldap_free_urllist(*ludlist);
698                         *ludlist = NULL;
699                         return LDAP_NO_MEMORY;
700                 }
701                 ludp->lud_port = port;
702                 ludp->lud_host = specs[i];
703                 specs[i] = NULL;
704                 p = strchr(ludp->lud_host, ':');
705                 if (p != NULL) {
706                         /* more than one :, IPv6 address */
707                         if ( strchr(p+1, ':') != NULL ) {
708                                 /* allow [address] and [address]:port */
709                                 if ( *ludp->lud_host == '[' ) {
710                                         p = LDAP_STRDUP(ludp->lud_host+1);
711                                         /* copied, make sure we free source later */
712                                         specs[i] = ludp->lud_host;
713                                         ludp->lud_host = p;
714                                         p = strchr( ludp->lud_host, ']' );
715                                         if ( p == NULL )
716                                                 return LDAP_PARAM_ERROR;
717                                         *p++ = '\0';
718                                         if ( *p != ':' ) {
719                                                 if ( *p != '\0' )
720                                                         return LDAP_PARAM_ERROR;
721                                                 p = NULL;
722                                         }
723                                 } else {
724                                         p = NULL;
725                                 }
726                         }
727                         if (p != NULL) {
728                                 *p++ = 0;
729                                 ldap_pvt_hex_unescape(p);
730                                 ludp->lud_port = atoi(p);
731                         }
732                 }
733                 ldap_pvt_hex_unescape(ludp->lud_host);
734                 ludp->lud_scheme = LDAP_STRDUP("ldap");
735                 ludp->lud_next = *ludlist;
736                 *ludlist = ludp;
737         }
738
739         /* this should be an array of NULLs now */
740         /* except entries starting with [ */
741         ldap_charray_free(specs);
742         return LDAP_SUCCESS;
743 }
744
745 char *
746 ldap_url_list2hosts (LDAPURLDesc *ludlist)
747 {
748         LDAPURLDesc *ludp;
749         int size;
750         char *s, *p, buf[32];   /* big enough to hold a long decimal # (overkill) */
751
752         if (ludlist == NULL)
753                 return NULL;
754
755         /* figure out how big the string is */
756         size = 1;       /* nul-term */
757         for (ludp = ludlist; ludp != NULL; ludp = ludp->lud_next) {
758                 size += strlen(ludp->lud_host) + 1;             /* host and space */
759                 if (strchr(ludp->lud_host, ':'))        /* will add [ ] below */
760                         size += 2;
761                 if (ludp->lud_port != 0)
762                         size += sprintf(buf, ":%d", ludp->lud_port);
763         }
764         s = LDAP_MALLOC(size);
765         if (s == NULL)
766                 return NULL;
767
768         p = s;
769         for (ludp = ludlist; ludp != NULL; ludp = ludp->lud_next) {
770                 if (strchr(ludp->lud_host, ':')) {
771                         p += sprintf(p, "[%s]", ludp->lud_host);
772                 } else {
773                         strcpy(p, ludp->lud_host);
774                         p += strlen(ludp->lud_host);
775                 }
776                 if (ludp->lud_port != 0)
777                         p += sprintf(p, ":%d", ludp->lud_port);
778                 *p++ = ' ';
779         }
780         if (p != s)
781                 p--;    /* nuke that extra space */
782         *p = 0;
783         return s;
784 }
785
786 char *
787 ldap_url_list2urls(
788         LDAPURLDesc *ludlist )
789 {
790         LDAPURLDesc *ludp;
791         int size;
792         char *s, *p, buf[32];   /* big enough to hold a long decimal # (overkill) */
793
794         if (ludlist == NULL)
795                 return NULL;
796
797         /* figure out how big the string is */
798         size = 1;       /* nul-term */
799         for (ludp = ludlist; ludp != NULL; ludp = ludp->lud_next) {
800                 size += strlen(ludp->lud_scheme) + strlen(ludp->lud_host);
801                 if (strchr(ludp->lud_host, ':'))        /* will add [ ] below */
802                         size += 2;
803                 size += sizeof(":/// ");
804
805                 if (ludp->lud_port != 0) {
806                         size += sprintf(buf, ":%d", ludp->lud_port);
807                 }
808         }
809
810         s = LDAP_MALLOC(size);
811         if (s == NULL) {
812                 return NULL;
813         }
814
815         p = s;
816         for (ludp = ludlist; ludp != NULL; ludp = ludp->lud_next) {
817                 p += sprintf(p,
818                              strchr(ludp->lud_host, ':') ? "%s://[%s]" : "%s://%s",
819                              ludp->lud_scheme, ludp->lud_host);
820                 if (ludp->lud_port != 0)
821                         p += sprintf(p, ":%d", ludp->lud_port);
822                 *p++ = '/';
823                 *p++ = ' ';
824         }
825         if (p != s)
826                 p--;    /* nuke that extra space */
827         *p = 0;
828         return s;
829 }
830
831 void
832 ldap_free_urllist( LDAPURLDesc *ludlist )
833 {
834         LDAPURLDesc *ludp, *next;
835
836         for (ludp = ludlist; ludp != NULL; ludp = next) {
837                 next = ludp->lud_next;
838                 ldap_free_urldesc(ludp);
839         }
840 }
841
842 void
843 ldap_free_urldesc( LDAPURLDesc *ludp )
844 {
845         if ( ludp == NULL ) {
846                 return;
847         }
848         
849         if ( ludp->lud_scheme != NULL ) {
850                 LDAP_FREE( ludp->lud_scheme );
851         }
852
853         if ( ludp->lud_host != NULL ) {
854                 LDAP_FREE( ludp->lud_host );
855         }
856
857         if ( ludp->lud_dn != NULL ) {
858                 LDAP_FREE( ludp->lud_dn );
859         }
860
861         if ( ludp->lud_filter != NULL ) {
862                 LDAP_FREE( ludp->lud_filter);
863         }
864
865         if ( ludp->lud_attrs != NULL ) {
866                 LDAP_VFREE( ludp->lud_attrs );
867         }
868
869         if ( ludp->lud_exts != NULL ) {
870                 LDAP_VFREE( ludp->lud_exts );
871         }
872
873         LDAP_FREE( ludp );
874 }
875
876
877
878 int
879 ldap_url_search( LDAP *ld, LDAP_CONST char *url, int attrsonly )
880 {
881         int             err;
882         LDAPURLDesc     *ludp;
883         BerElement      *ber;
884         LDAPreqinfo  bind;
885
886         assert( ld != NULL );
887         assert( LDAP_VALID( ld ) );
888
889         if ( ldap_url_parse( url, &ludp ) != 0 ) {
890                 ld->ld_errno = LDAP_PARAM_ERROR;
891                 return( -1 );
892         }
893
894         if( ludp->lud_crit_exts ) {
895                 /* we don't support any extension (yet) */
896                 ld->ld_errno = LDAP_NOT_SUPPORTED;
897                 return( -1 );
898         }
899
900         ber = ldap_build_search_req( ld, ludp->lud_dn, ludp->lud_scope,
901             ludp->lud_filter, ludp->lud_attrs, attrsonly, NULL, NULL,
902                 -1, -1 );
903
904         if ( ber == NULL ) {
905                 err = -1;
906         } else {
907                 bind.ri_request = LDAP_REQ_SEARCH;
908                 bind.ri_msgid = ld->ld_msgid;
909                 bind.ri_url = (char *)url;
910                 err = ldap_send_server_request(
911                                         ld, ber, ld->ld_msgid, NULL,
912                                         NULL, NULL, &bind );
913         }
914
915         ldap_free_urldesc( ludp );
916         return( err );
917 }
918
919
920 int
921 ldap_url_search_st( LDAP *ld, LDAP_CONST char *url, int attrsonly,
922         struct timeval *timeout, LDAPMessage **res )
923 {
924         int     msgid;
925
926         if (( msgid = ldap_url_search( ld, url, attrsonly )) == -1 ) {
927                 return( ld->ld_errno );
928         }
929
930         if ( ldap_result( ld, msgid, 1, timeout, res ) == -1 ) {
931                 return( ld->ld_errno );
932         }
933
934         if ( ld->ld_errno == LDAP_TIMEOUT ) {
935                 (void) ldap_abandon( ld, msgid );
936                 ld->ld_errno = LDAP_TIMEOUT;
937                 return( ld->ld_errno );
938         }
939
940         return( ldap_result2error( ld, *res, 0 ));
941 }
942
943
944 int
945 ldap_url_search_s(
946         LDAP *ld, LDAP_CONST char *url, int attrsonly, LDAPMessage **res )
947 {
948         int     msgid;
949
950         if (( msgid = ldap_url_search( ld, url, attrsonly )) == -1 ) {
951                 return( ld->ld_errno );
952         }
953
954         if ( ldap_result( ld, msgid, 1, (struct timeval *)NULL, res ) == -1 ) {
955                 return( ld->ld_errno );
956         }
957
958         return( ldap_result2error( ld, *res, 0 ));
959 }
960
961
962 void
963 ldap_pvt_hex_unescape( char *s )
964 {
965         /*
966          * Remove URL hex escapes from s... done in place.  The basic concept for
967          * this routine is borrowed from the WWW library HTUnEscape() routine.
968          */
969         char    *p;
970
971         for ( p = s; *s != '\0'; ++s ) {
972                 if ( *s == '%' ) {
973                         if ( *++s != '\0' ) {
974                                 *p = ldap_pvt_unhex( *s ) << 4;
975                         }
976                         if ( *++s != '\0' ) {
977                                 *p++ += ldap_pvt_unhex( *s );
978                         }
979                 } else {
980                         *p++ = *s;
981                 }
982         }
983
984         *p = '\0';
985 }
986
987
988 int
989 ldap_pvt_unhex( int c )
990 {
991         return( c >= '0' && c <= '9' ? c - '0'
992             : c >= 'A' && c <= 'F' ? c - 'A' + 10
993             : c - 'a' + 10 );
994 }