]> git.sur5r.net Git - openldap/blobdiff - libraries/libldap/url.c
Remove dead code
[openldap] / libraries / libldap / url.c
index b0420043d43db80686036898dbba6407eea30959..adc08c9b48951ee2fc7f9791ce58b00064f1ef8d 100644 (file)
@@ -1,20 +1,21 @@
+/* $OpenLDAP$ */
 /*
- * Copyright 1998-1999 The OpenLDAP Foundation, All Rights Reserved.
+ * Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved.
  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
  */
 /*  Portions
  *  Copyright (c) 1996 Regents of the University of Michigan.
  *  All rights reserved.
  *
- *  LIBLDAP url.c -- LDAP URL related routines
+ *  LIBLDAP url.c -- LDAP URL (RFC 2255) related routines
  *
  *  LDAP URLs look like this:
- *    ldap[s]://host:port/dn[[?attributes[?scope[?filter[?extensions]]]]
+ *    ldap[is]://host:port[/[dn[?[attributes][?[scope][?[filter][?exts]]]]]]
  *
  *  where:
  *   attributes is a comma separated list
  *   scope is one of these three strings:  base one sub (default=base)
- *   filter is an string-represented filter as in RFC 1558
+ *   filter is an string-represented filter as in RFC 2254
  *
  *  e.g.,  ldap://host:port/dc=com?o,cn?base?o=openldap?extension
  *
@@ -27,7 +28,6 @@
 
 #include <ac/stdlib.h>
 
-#include <ac/ctype.h>
 #include <ac/socket.h>
 #include <ac/string.h>
 #include <ac/time.h>
 static const char* skip_url_prefix LDAP_P((
        const char *url,
        int *enclosedp,
-       int *ldaps ));
-static void hex_unescape LDAP_P(( char *s ));
-static int unhex( char c );
+       const char **scheme ));
 
+int ldap_pvt_url_scheme2proto( const char *scheme )
+{
+       assert( scheme );
+
+       if( scheme == NULL ) {
+               return -1;
+       }
+
+       if( strcmp("ldap", scheme) == 0 ) {
+               return LDAP_PROTO_TCP;
+       }
+
+       if( strcmp("ldapi", scheme) == 0 ) {
+               return LDAP_PROTO_IPC;
+       }
+
+       if( strcmp("ldaps", scheme) == 0 ) {
+               return LDAP_PROTO_TCP;
+       }
+
+       return -1;
+}
+
+int ldap_pvt_url_scheme2tls( const char *scheme )
+{
+       assert( scheme );
+
+       if( scheme == NULL ) {
+               return -1;
+       }
+
+       return strcmp("ldaps", scheme) == 0;
+}
 
 int
 ldap_is_ldap_url( LDAP_CONST char *url )
 {
        int     enclosed;
-       int ldaps;
+       const char * scheme;
 
        if( url == NULL ) {
                return 0;
        }
 
-       if( skip_url_prefix( url, &enclosed, &ldaps) == NULL ) {
+       if( skip_url_prefix( url, &enclosed, &scheme ) == NULL ) {
                return 0;
        }
 
-       return !ldaps;
+       return 1;
 }
 
 int
 ldap_is_ldaps_url( LDAP_CONST char *url )
 {
        int     enclosed;
-       int ldaps;
+       const char * scheme;
 
        if( url == NULL ) {
                return 0;
        }
 
-       if( skip_url_prefix( url, &enclosed, &ldaps) == NULL ) {
+       if( skip_url_prefix( url, &enclosed, &scheme ) == NULL ) {
                return 0;
        }
 
-       return ldaps;
+       return strcmp(scheme, "ldaps") == 0;
+}
+
+int
+ldap_is_ldapi_url( LDAP_CONST char *url )
+{
+       int     enclosed;
+       const char * scheme;
+
+       if( url == NULL ) {
+               return 0;
+       }
+
+       if( skip_url_prefix( url, &enclosed, &scheme ) == NULL ) {
+               return 0;
+       }
+
+       return strcmp(scheme, "ldapi") == 0;
 }
 
 static const char*
 skip_url_prefix(
        const char *url,
        int *enclosedp,
-       int *ldaps )
+       const char **scheme )
 {
 /*
  * return non-zero if this looks like a LDAP URL; zero if not
  * if non-zero returned, *urlp will be moved past "ldap://" part of URL
  */
-       char* p;
+       const char *p;
 
        if ( url == NULL ) {
                return( NULL );
        }
 
-       p = (char *) url;
+       p = url;
 
        /* skip leading '<' (if any) */
        if ( *p == '<' ) {
@@ -105,8 +153,7 @@ skip_url_prefix(
        }
 
        /* skip leading "URL:" (if any) */
-       if ( strncasecmp( p, LDAP_URL_URLCOLON, LDAP_URL_URLCOLON_LEN ) == 0 )
-       {
+       if ( strncasecmp( p, LDAP_URL_URLCOLON, LDAP_URL_URLCOLON_LEN ) == 0 ) {
                p += LDAP_URL_URLCOLON_LEN;
        }
 
@@ -114,7 +161,7 @@ skip_url_prefix(
        if ( strncasecmp( p, LDAP_URL_PREFIX, LDAP_URL_PREFIX_LEN ) == 0 ) {
                /* skip over "ldap://" prefix and return success */
                p += LDAP_URL_PREFIX_LEN;
-               *ldaps = 0;
+               *scheme = "ldap";
                return( p );
        }
 
@@ -122,7 +169,15 @@ skip_url_prefix(
        if ( strncasecmp( p, LDAPS_URL_PREFIX, LDAPS_URL_PREFIX_LEN ) == 0 ) {
                /* skip over "ldaps://" prefix and return success */
                p += LDAPS_URL_PREFIX_LEN;
-               *ldaps = 1;
+               *scheme = "ldaps";
+               return( p );
+       }
+
+       /* check for "ldapi://" prefix */
+       if ( strncasecmp( p, LDAPI_URL_PREFIX, LDAPI_URL_PREFIX_LEN ) == 0 ) {
+               /* skip over "ldapi://" prefix and return success */
+               p += LDAPI_URL_PREFIX_LEN;
+               *scheme = "ldapi";
                return( p );
        }
 
@@ -153,35 +208,46 @@ static int str2scope( const char *p )
 
 
 int
-ldap_url_parse( LDAP_CONST char *url_in, LDAPURLDesc **ludpp )
+ldap_url_parse_ext( LDAP_CONST char *url_in, LDAPURLDesc **ludpp )
 {
 /*
  *  Pick apart the pieces of an LDAP URL.
  */
 
        LDAPURLDesc     *ludp;
-       char    *p, *q;
-       int             i, enclosed, ldaps;
+       char    *p, *q, *r;
+       int             i, enclosed;
+       const char *scheme = NULL;
        const char *url_tmp;
        char *url;
 
-       if( url_in == NULL && ludpp == NULL ) {
+       if( url_in == NULL || ludpp == NULL ) {
                return LDAP_URL_ERR_PARAM;
        }
 
-       Debug( LDAP_DEBUG_TRACE, "ldap_url_parse(%s)\n", url_in, 0, 0 );
+#ifndef LDAP_INT_IN_KERNEL
+       /* Global options may not be created yet
+        * We can't test if the global options are initialized
+        * because a call to LDAP_INT_GLOBAL_OPT() will try to allocate
+        * the options and cause infinite recursion
+        */
+       Debug( LDAP_DEBUG_TRACE, "ldap_url_parse_ext(%s)\n", url_in, 0, 0 );
+#endif
 
        *ludpp = NULL;  /* pessimistic */
 
-       url_tmp = skip_url_prefix( url_in, &enclosed, &ldaps );
+       url_tmp = skip_url_prefix( url_in, &enclosed, &scheme );
 
        if ( url_tmp == NULL ) {
-               return LDAP_URL_ERR_NOTLDAP;
+               return LDAP_URL_ERR_BADSCHEME;
        }
 
+       assert( scheme );
+
        /* make working copy of the remainder of the URL */
-       if (( url = LDAP_STRDUP( url_tmp )) == NULL ) {
-               return( LDAP_URL_ERR_MEM );
+       url = LDAP_STRDUP( url_tmp );
+       if ( url == NULL ) {
+               return LDAP_URL_ERR_MEM;
        }
 
        if ( enclosed ) {
@@ -203,36 +269,53 @@ ldap_url_parse( LDAP_CONST char *url_in, LDAPURLDesc **ludpp )
                return LDAP_URL_ERR_MEM;
        }
 
+       ludp->lud_next = NULL;
        ludp->lud_host = NULL;
-       ludp->lud_port = 0;
-    ludp->lud_dn = NULL;
-    ludp->lud_attrs = NULL;
-    ludp->lud_filter = NULL;
-       ludp->lud_ldaps = ldaps;
-       ludp->lud_scope = LDAP_SCOPE_BASE;
-       ludp->lud_filter = LDAP_STRDUP("(objectClass=*)");
-
-       if( ludp->lud_filter == NULL ) {
+       ludp->lud_port = LDAP_PORT;
+       ludp->lud_dn = NULL;
+       ludp->lud_attrs = NULL;
+       ludp->lud_filter = NULL;
+       ludp->lud_scope = LDAP_SCOPE_DEFAULT;
+       ludp->lud_filter = NULL;
+       ludp->lud_exts = NULL;
+
+       ludp->lud_scheme = LDAP_STRDUP( scheme );
+
+       if ( ludp->lud_scheme == NULL ) {
                LDAP_FREE( url );
                ldap_free_urldesc( ludp );
                return LDAP_URL_ERR_MEM;
        }
 
+       if( strcasecmp( ludp->lud_scheme, "ldaps" ) == 0 ) {
+               ludp->lud_port = LDAPS_PORT;
+       }
+
        /* scan forward for '/' that marks end of hostport and begin. of dn */
        p = strchr( url, '/' );
 
-       if( p == NULL ) {
-               LDAP_FREE( url );
-               ldap_free_urldesc( ludp );
-               return LDAP_URL_ERR_BADURL;
+       if( p != NULL ) {
+               /* terminate hostport; point to start of dn */
+               *p++ = '\0';
        }
 
-       /* terminate hostport; point to start of dn */
-       *p++ = '\0';
+       /* IPv6 syntax with [ip address]:port */
+       if ( *url == '[' ) {
+               r = strchr( url, ']' );
+               if ( r == NULL ) {
+                       LDAP_FREE( url );
+                       ldap_free_urldesc( ludp );
+                       return LDAP_URL_ERR_BADURL;
+               }
+               *r++ = '\0';
+               q = strchr( r, ':' );
+       } else {
+               q = strchr( url, ':' );
+       }
 
-       if (( q = strchr( url, ':' )) != NULL ) {
+       if ( q != NULL ) {
                *q++ = '\0';
-               hex_unescape( q );
+               ldap_pvt_hex_unescape( q );
 
                if( *q == '\0' ) {
                        LDAP_FREE( url );
@@ -243,8 +326,10 @@ ldap_url_parse( LDAP_CONST char *url_in, LDAPURLDesc **ludpp )
                ludp->lud_port = atoi( q );
        }
 
-       hex_unescape( url );
-       ludp->lud_host = LDAP_STRDUP( url );
+       ldap_pvt_hex_unescape( url );
+
+       /* If [ip address]:port syntax, url is [ip and we skip the [ */
+       ludp->lud_host = LDAP_STRDUP( url + ( *url == '[' ) );
 
        if( ludp->lud_host == NULL ) {
                LDAP_FREE( url );
@@ -252,28 +337,57 @@ ldap_url_parse( LDAP_CONST char *url_in, LDAPURLDesc **ludpp )
                return LDAP_URL_ERR_MEM;
        }
 
-       /* scan forward for '?' that may marks end of dn */
-       q = strchr( p, '?' );
-
-       if( q == NULL ) {
-               /* no '?' */
-               hex_unescape( p );
-               ludp->lud_dn = LDAP_STRDUP( p );
+       /*
+        * Kludge.  ldap://111.222.333.444:389??cn=abc,o=company
+        *
+        * On early Novell releases, search references/referrals were returned
+        * in this format, i.e., the dn was kind of in the scope position,
+        * but the required slash is missing. The whole thing is illegal syntax,
+        * but we need to account for it. Fortunately it can't be confused with
+        * anything real.
+        */
+       if( (p == NULL) && (q != NULL) && ((q = strchr( q, '?')) != NULL)) {
+               q++;            
+               /* ? immediately followed by question */
+               if( *q == '?') {
+                       q++;
+                       if( *q != '\0' ) {
+                               /* parse dn part */
+                               ldap_pvt_hex_unescape( q );
+                               ludp->lud_dn = LDAP_STRDUP( q );
+                       } else {
+                               ludp->lud_dn = LDAP_STRDUP( "" );
+                       }
 
-               if( ludp->lud_dn == NULL ) {
-                       LDAP_FREE( url );
-                       ldap_free_urldesc( ludp );
-                       return LDAP_URL_ERR_MEM;
+                       if( ludp->lud_dn == NULL ) {
+                               LDAP_FREE( url );
+                               ldap_free_urldesc( ludp );
+                               return LDAP_URL_ERR_MEM;
+                       }
                }
+       }
 
+       if( p == NULL ) {
                LDAP_FREE( url );
                *ludpp = ludp;
                return LDAP_URL_SUCCESS;
        }
 
-       *q++ = '\0';
-       hex_unescape( p );
-       ludp->lud_dn = LDAP_STRDUP( p );
+       /* scan forward for '?' that may marks end of dn */
+       q = strchr( p, '?' );
+
+       if( q != NULL ) {
+               /* terminate dn part */
+               *q++ = '\0';
+       }
+
+       if( *p != '\0' ) {
+               /* parse dn part */
+               ldap_pvt_hex_unescape( p );
+               ludp->lud_dn = LDAP_STRDUP( p );
+       } else {
+               ludp->lud_dn = LDAP_STRDUP( "" );
+       }
 
        if( ludp->lud_dn == NULL ) {
                LDAP_FREE( url );
@@ -281,15 +395,25 @@ ldap_url_parse( LDAP_CONST char *url_in, LDAPURLDesc **ludpp )
                return LDAP_URL_ERR_MEM;
        }
 
+       if( q == NULL ) {
+               /* no more */
+               LDAP_FREE( url );
+               *ludpp = ludp;
+               return LDAP_URL_SUCCESS;
+       }
+
        /* scan forward for '?' that may marks end of attributes */
        p = q;
        q = strchr( p, '?' );
 
        if( q != NULL ) {
+               /* terminate attributes part */
                *q++ = '\0';
        }
+
        if( *p != '\0' ) {
-               hex_unescape( p );
+               /* parse attributes */
+               ldap_pvt_hex_unescape( p );
                ludp->lud_attrs = ldap_str2charray( p, "," );
 
                if( ludp->lud_attrs == NULL ) {
@@ -298,8 +422,9 @@ ldap_url_parse( LDAP_CONST char *url_in, LDAPURLDesc **ludpp )
                        return LDAP_URL_ERR_BADATTRS;
                }
        }
+
        if ( q == NULL ) {
-               /* no '?' */
+               /* no more */
                LDAP_FREE( url );
                *ludpp = ludp;
                return LDAP_URL_SUCCESS;
@@ -310,10 +435,13 @@ ldap_url_parse( LDAP_CONST char *url_in, LDAPURLDesc **ludpp )
        q = strchr( p, '?' );
 
        if( q != NULL ) {
+               /* terminate the scope part */
                *q++ = '\0';
        }
+
        if( *p != '\0' ) {
-               hex_unescape( p );
+               /* parse the scope */
+               ldap_pvt_hex_unescape( p );
                ludp->lud_scope = str2scope( p );
 
                if( ludp->lud_scope == -1 ) {
@@ -322,8 +450,9 @@ ldap_url_parse( LDAP_CONST char *url_in, LDAPURLDesc **ludpp )
                        return LDAP_URL_ERR_BADSCOPE;
                }
        }
+
        if ( q == NULL ) {
-               /* no '?' */
+               /* no more */
                LDAP_FREE( url );
                *ludpp = ludp;
                return LDAP_URL_SUCCESS;
@@ -334,10 +463,13 @@ ldap_url_parse( LDAP_CONST char *url_in, LDAPURLDesc **ludpp )
        q = strchr( p, '?' );
 
        if( q != NULL ) {
+               /* terminate the filter part */
                *q++ = '\0';
        }
+
        if( *p != '\0' ) {
-               hex_unescape( p );
+               /* parse the filter */
+               ldap_pvt_hex_unescape( p );
 
                if( ! *p ) {
                        /* missing filter */
@@ -346,6 +478,7 @@ ldap_url_parse( LDAP_CONST char *url_in, LDAPURLDesc **ludpp )
                        return LDAP_URL_ERR_BADFILTER;
                }
 
+               LDAP_FREE( ludp->lud_filter );
                ludp->lud_filter = LDAP_STRDUP( p );
 
                if( ludp->lud_filter == NULL ) {
@@ -354,8 +487,9 @@ ldap_url_parse( LDAP_CONST char *url_in, LDAPURLDesc **ludpp )
                        return LDAP_URL_ERR_MEM;
                }
        }
+
        if ( q == NULL ) {
-               /* no '?' */
+               /* no more */
                LDAP_FREE( url );
                *ludpp = ludp;
                return LDAP_URL_SUCCESS;
@@ -372,6 +506,7 @@ ldap_url_parse( LDAP_CONST char *url_in, LDAPURLDesc **ludpp )
                return LDAP_URL_ERR_BADURL;
        }
 
+       /* parse the extensions */
        ludp->lud_exts = ldap_str2charray( p, "," );
 
        if( ludp->lud_exts == NULL ) {
@@ -381,22 +516,348 @@ ldap_url_parse( LDAP_CONST char *url_in, LDAPURLDesc **ludpp )
        }
 
        for( i=0; ludp->lud_exts[i] != NULL; i++ ) {
-               hex_unescape( ludp->lud_exts[i] );
+               ldap_pvt_hex_unescape( ludp->lud_exts[i] );
+
+               if( *ludp->lud_exts[i] == '!' ) {
+                       /* count the number of critical extensions */
+                       ludp->lud_crit_exts++;
+               }
        }
 
        if( i == 0 ) {
-               ldap_charray_free( ludp->lud_exts );
+               /* must have 1 or more */
                LDAP_FREE( url );
                ldap_free_urldesc( ludp );
                return LDAP_URL_ERR_BADEXTS;
        }
 
+       /* no more */
        *ludpp = ludp;
-
        LDAP_FREE( url );
        return LDAP_URL_SUCCESS;
 }
 
+int
+ldap_url_parse( LDAP_CONST char *url_in, LDAPURLDesc **ludpp )
+{
+       int rc = ldap_url_parse_ext( url_in, ludpp );
+
+       if( rc != LDAP_URL_SUCCESS ) {
+               return rc;
+       }
+
+       if ((*ludpp)->lud_scope == LDAP_SCOPE_DEFAULT) {
+               (*ludpp)->lud_scope = LDAP_SCOPE_BASE;
+       }
+
+       if ((*ludpp)->lud_host != NULL && *(*ludpp)->lud_host == '\0') {
+               LDAP_FREE( (*ludpp)->lud_host );
+               (*ludpp)->lud_host = NULL;
+       }
+
+       return rc;
+}
+
+LDAPURLDesc *
+ldap_url_dup ( LDAPURLDesc *ludp )
+{
+       LDAPURLDesc *dest;
+
+       if ( ludp == NULL ) {
+               return NULL;
+       }
+
+       dest = LDAP_MALLOC( sizeof(LDAPURLDesc) );
+       if (dest == NULL)
+               return NULL;
+       
+       *dest = *ludp;
+       dest->lud_scheme = NULL;
+       dest->lud_host = NULL;
+       dest->lud_dn = NULL;
+       dest->lud_filter = NULL;
+       dest->lud_attrs = NULL;
+       dest->lud_exts = NULL;
+       dest->lud_next = NULL;
+
+       if ( ludp->lud_scheme != NULL ) {
+               dest->lud_scheme = LDAP_STRDUP( ludp->lud_scheme );
+               if (dest->lud_scheme == NULL) {
+                       ldap_free_urldesc(dest);
+                       return NULL;
+               }
+       }
+
+       if ( ludp->lud_host != NULL ) {
+               dest->lud_host = LDAP_STRDUP( ludp->lud_host );
+               if (dest->lud_host == NULL) {
+                       ldap_free_urldesc(dest);
+                       return NULL;
+               }
+       }
+
+       if ( ludp->lud_dn != NULL ) {
+               dest->lud_dn = LDAP_STRDUP( ludp->lud_dn );
+               if (dest->lud_dn == NULL) {
+                       ldap_free_urldesc(dest);
+                       return NULL;
+               }
+       }
+
+       if ( ludp->lud_filter != NULL ) {
+               dest->lud_filter = LDAP_STRDUP( ludp->lud_filter );
+               if (dest->lud_filter == NULL) {
+                       ldap_free_urldesc(dest);
+                       return NULL;
+               }
+       }
+
+       if ( ludp->lud_attrs != NULL ) {
+               dest->lud_attrs = ldap_charray_dup( ludp->lud_attrs );
+               if (dest->lud_attrs == NULL) {
+                       ldap_free_urldesc(dest);
+                       return NULL;
+               }
+       }
+
+       if ( ludp->lud_exts != NULL ) {
+               dest->lud_exts = ldap_charray_dup( ludp->lud_exts );
+               if (dest->lud_exts == NULL) {
+                       ldap_free_urldesc(dest);
+                       return NULL;
+               }
+       }
+
+       return dest;
+}
+
+LDAPURLDesc *
+ldap_url_duplist (LDAPURLDesc *ludlist)
+{
+       LDAPURLDesc *dest, *tail, *ludp, *newludp;
+
+       dest = NULL;
+       tail = NULL;
+       for (ludp = ludlist; ludp != NULL; ludp = ludp->lud_next) {
+               newludp = ldap_url_dup(ludp);
+               if (newludp == NULL) {
+                       ldap_free_urllist(dest);
+                       return NULL;
+               }
+               if (tail == NULL)
+                       dest = newludp;
+               else
+                       tail->lud_next = newludp;
+               tail = newludp;
+       }
+       return dest;
+}
+
+int
+ldap_url_parselist (LDAPURLDesc **ludlist, const char *url )
+{
+       int i, rc;
+       LDAPURLDesc *ludp;
+       char **urls;
+
+       *ludlist = NULL;
+
+       if (url == NULL)
+               return LDAP_PARAM_ERROR;
+
+       urls = ldap_str2charray((char *)url, ", ");
+       if (urls == NULL)
+               return LDAP_NO_MEMORY;
+
+       /* count the URLs... */
+       for (i = 0; urls[i] != NULL; i++) ;
+       /* ...and put them in the "stack" backward */
+       while (--i >= 0) {
+               rc = ldap_url_parse( urls[i], &ludp );
+               if ( rc != 0 ) {
+                       ldap_charray_free(urls);
+                       ldap_free_urllist(*ludlist);
+                       *ludlist = NULL;
+                       return rc;
+               }
+               ludp->lud_next = *ludlist;
+               *ludlist = ludp;
+       }
+       ldap_charray_free(urls);
+       return LDAP_SUCCESS;
+}
+
+int
+ldap_url_parsehosts(
+       LDAPURLDesc **ludlist,
+       const char *hosts,
+       int port )
+{
+       int i;
+       LDAPURLDesc *ludp;
+       char **specs, *p;
+
+       *ludlist = NULL;
+
+       if (hosts == NULL)
+               return LDAP_PARAM_ERROR;
+
+       specs = ldap_str2charray((char *)hosts, ", ");
+       if (specs == NULL)
+               return LDAP_NO_MEMORY;
+
+       /* count the URLs... */
+       for (i = 0; specs[i] != NULL; i++) /* EMPTY */;
+
+       /* ...and put them in the "stack" backward */
+       while (--i >= 0) {
+               ludp = LDAP_CALLOC( 1, sizeof(LDAPURLDesc) );
+               if (ludp == NULL) {
+                       ldap_charray_free(specs);
+                       ldap_free_urllist(*ludlist);
+                       *ludlist = NULL;
+                       return LDAP_NO_MEMORY;
+               }
+               ludp->lud_port = port;
+               ludp->lud_host = specs[i];
+               specs[i] = NULL;
+               p = strchr(ludp->lud_host, ':');
+               if (p != NULL) {
+                       /* more than one :, IPv6 address */
+                       if ( strchr(p+1, ':') != NULL ) {
+                               /* allow [address] and [address]:port */
+                               if ( *ludp->lud_host == '[' ) {
+                                       p = LDAP_STRDUP(ludp->lud_host+1);
+                                       /* copied, make sure we free source later */
+                                       specs[i] = ludp->lud_host;
+                                       ludp->lud_host = p;
+                                       p = strchr( ludp->lud_host, ']' );
+                                       if ( p == NULL )
+                                               return LDAP_PARAM_ERROR;
+                                       *p++ = '\0';
+                                       if ( *p != ':' ) {
+                                               if ( *p != '\0' )
+                                                       return LDAP_PARAM_ERROR;
+                                               p = NULL;
+                                       }
+                               } else {
+                                       p = NULL;
+                               }
+                       }
+                       if (p != NULL) {
+                               *p++ = 0;
+                               ldap_pvt_hex_unescape(p);
+                               ludp->lud_port = atoi(p);
+                       }
+               }
+               ldap_pvt_hex_unescape(ludp->lud_host);
+               ludp->lud_scheme = LDAP_STRDUP("ldap");
+               ludp->lud_next = *ludlist;
+               *ludlist = ludp;
+       }
+
+       /* this should be an array of NULLs now */
+       /* except entries starting with [ */
+       ldap_charray_free(specs);
+       return LDAP_SUCCESS;
+}
+
+char *
+ldap_url_list2hosts (LDAPURLDesc *ludlist)
+{
+       LDAPURLDesc *ludp;
+       int size;
+       char *s, *p, buf[32];   /* big enough to hold a long decimal # (overkill) */
+
+       if (ludlist == NULL)
+               return NULL;
+
+       /* figure out how big the string is */
+       size = 1;       /* nul-term */
+       for (ludp = ludlist; ludp != NULL; ludp = ludp->lud_next) {
+               size += strlen(ludp->lud_host) + 1;             /* host and space */
+               if (strchr(ludp->lud_host, ':'))        /* will add [ ] below */
+                       size += 2;
+               if (ludp->lud_port != 0)
+                       size += sprintf(buf, ":%d", ludp->lud_port);
+       }
+       s = LDAP_MALLOC(size);
+       if (s == NULL)
+               return NULL;
+
+       p = s;
+       for (ludp = ludlist; ludp != NULL; ludp = ludp->lud_next) {
+               if (strchr(ludp->lud_host, ':')) {
+                       p += sprintf(p, "[%s]", ludp->lud_host);
+               } else {
+                       strcpy(p, ludp->lud_host);
+                       p += strlen(ludp->lud_host);
+               }
+               if (ludp->lud_port != 0)
+                       p += sprintf(p, ":%d", ludp->lud_port);
+               *p++ = ' ';
+       }
+       if (p != s)
+               p--;    /* nuke that extra space */
+       *p = 0;
+       return s;
+}
+
+char *
+ldap_url_list2urls(
+       LDAPURLDesc *ludlist )
+{
+       LDAPURLDesc *ludp;
+       int size;
+       char *s, *p, buf[32];   /* big enough to hold a long decimal # (overkill) */
+
+       if (ludlist == NULL)
+               return NULL;
+
+       /* figure out how big the string is */
+       size = 1;       /* nul-term */
+       for (ludp = ludlist; ludp != NULL; ludp = ludp->lud_next) {
+               size += strlen(ludp->lud_scheme) + strlen(ludp->lud_host);
+               if (strchr(ludp->lud_host, ':'))        /* will add [ ] below */
+                       size += 2;
+               size += sizeof(":/// ");
+
+               if (ludp->lud_port != 0) {
+                       size += sprintf(buf, ":%d", ludp->lud_port);
+               }
+       }
+
+       s = LDAP_MALLOC(size);
+       if (s == NULL) {
+               return NULL;
+       }
+
+       p = s;
+       for (ludp = ludlist; ludp != NULL; ludp = ludp->lud_next) {
+               p += sprintf(p,
+                            strchr(ludp->lud_host, ':') ? "%s://[%s]" : "%s://%s",
+                            ludp->lud_scheme, ludp->lud_host);
+               if (ludp->lud_port != 0)
+                       p += sprintf(p, ":%d", ludp->lud_port);
+               *p++ = '/';
+               *p++ = ' ';
+       }
+       if (p != s)
+               p--;    /* nuke that extra space */
+       *p = 0;
+       return s;
+}
+
+void
+ldap_free_urllist( LDAPURLDesc *ludlist )
+{
+       LDAPURLDesc *ludp, *next;
+
+       for (ludp = ludlist; ludp != NULL; ludp = next) {
+               next = ludp->lud_next;
+               ldap_free_urldesc(ludp);
+       }
+}
 
 void
 ldap_free_urldesc( LDAPURLDesc *ludp )
@@ -405,6 +866,10 @@ ldap_free_urldesc( LDAPURLDesc *ludp )
                return;
        }
        
+       if ( ludp->lud_scheme != NULL ) {
+               LDAP_FREE( ludp->lud_scheme );
+       }
+
        if ( ludp->lud_host != NULL ) {
                LDAP_FREE( ludp->lud_host );
        }
@@ -436,50 +901,38 @@ ldap_url_search( LDAP *ld, LDAP_CONST char *url, int attrsonly )
        int             err;
        LDAPURLDesc     *ludp;
        BerElement      *ber;
-       LDAPServer      *srv = NULL;
+       LDAPreqinfo  bind;
+
+       assert( ld != NULL );
+       assert( LDAP_VALID( ld ) );
 
        if ( ldap_url_parse( url, &ludp ) != 0 ) {
                ld->ld_errno = LDAP_PARAM_ERROR;
                return( -1 );
        }
 
+       if( ludp->lud_crit_exts ) {
+               /* we don't support any extension (yet) */
+               ld->ld_errno = LDAP_NOT_SUPPORTED;
+               return( -1 );
+       }
+
        ber = ldap_build_search_req( ld, ludp->lud_dn, ludp->lud_scope,
            ludp->lud_filter, ludp->lud_attrs, attrsonly, NULL, NULL,
                -1, -1 );
 
        if ( ber == NULL ) {
-               return( -1 );
-       }
-
-       err = 0;
-
-       if ( ludp->lud_host != NULL || ludp->lud_port != 0 ) {
-               if (( srv = (LDAPServer *)LDAP_CALLOC( 1, sizeof( LDAPServer )))
-                   == NULL || ( srv->lsrv_host = LDAP_STRDUP( ludp->lud_host ==
-                   NULL ? ld->ld_defhost : ludp->lud_host )) == NULL ) {
-                       if ( srv != NULL ) {
-                               LDAP_FREE( srv );
-                       }
-                       ld->ld_errno = LDAP_NO_MEMORY;
-                       err = -1;
-               } else {
-                       if ( ludp->lud_port == 0 ) {
-                               srv->lsrv_port = ldap_int_global_options.ldo_defport;
-                       } else {
-                               srv->lsrv_port = ludp->lud_port;
-                       }
-               }
-       }
-
-       if ( err != 0 ) {
-               ber_free( ber, 1 );
+               err = -1;
        } else {
-               err = ldap_send_server_request( ld, ber, ld->ld_msgid, NULL, srv,
-                   NULL, 1 );
+               bind.ri_request = LDAP_REQ_SEARCH;
+               bind.ri_msgid = ld->ld_msgid;
+               bind.ri_url = (char *)url;
+               err = ldap_send_server_request(
+                                       ld, ber, ld->ld_msgid, NULL,
+                                       NULL, NULL, &bind );
        }
 
        ldap_free_urldesc( ludp );
-
        return( err );
 }
 
@@ -526,22 +979,22 @@ ldap_url_search_s(
 }
 
 
-static void
-hex_unescape( char *s )
+void
+ldap_pvt_hex_unescape( char *s )
 {
-/*
- * Remove URL hex escapes from s... done in place.  The basic concept for
- * this routine is borrowed from the WWW library HTUnEscape() routine.
- */
+       /*
       * Remove URL hex escapes from s... done in place.  The basic concept for
       * this routine is borrowed from the WWW library HTUnEscape() routine.
       */
        char    *p;
 
        for ( p = s; *s != '\0'; ++s ) {
                if ( *s == '%' ) {
                        if ( *++s != '\0' ) {
-                               *p = unhex( *s ) << 4;
+                               *p = ldap_pvt_unhex( *s ) << 4;
                        }
                        if ( *++s != '\0' ) {
-                               *p++ += unhex( *s );
+                               *p++ += ldap_pvt_unhex( *s );
                        }
                } else {
                        *p++ = *s;
@@ -552,8 +1005,8 @@ hex_unescape( char *s )
 }
 
 
-static int
-unhex( char c )
+int
+ldap_pvt_unhex( int c )
 {
        return( c >= '0' && c <= '9' ? c - '0'
            : c >= 'A' && c <= 'F' ? c - 'A' + 10