]> git.sur5r.net Git - openldap/blobdiff - libraries/libldap/url.c
Start TLS extension: check that TLS was inited successfully, return default referral...
[openldap] / libraries / libldap / url.c
index 874affc0f6f902dc2a1ab4dd2ff16a1f0b336128..3a4dcbd503a6dcc6557d977dc78c645f65dc8c6f 100644 (file)
@@ -1,3 +1,4 @@
+/* $OpenLDAP$ */
 /*
  * Copyright 1998-1999 The OpenLDAP Foundation, All Rights Reserved.
  * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
@@ -6,7 +7,7 @@
  *  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][?exts]]]]]]
@@ -14,7 +15,7 @@
  *  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
  *
@@ -40,8 +41,6 @@ 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 );
 
 
 int
@@ -88,13 +87,13 @@ skip_url_prefix(
  * 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 == '<' ) {
@@ -203,6 +202,7 @@ 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;
@@ -210,6 +210,7 @@ ldap_url_parse( LDAP_CONST char *url_in, LDAPURLDesc **ludpp )
     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 ) {
@@ -228,7 +229,7 @@ ldap_url_parse( LDAP_CONST char *url_in, LDAPURLDesc **ludpp )
 
        if (( q = strchr( url, ':' )) != NULL ) {
                *q++ = '\0';
-               hex_unescape( q );
+               ldap_pvt_hex_unescape( q );
 
                if( *q == '\0' ) {
                        LDAP_FREE( url );
@@ -239,7 +240,7 @@ ldap_url_parse( LDAP_CONST char *url_in, LDAPURLDesc **ludpp )
                ludp->lud_port = atoi( q );
        }
 
-       hex_unescape( url );
+       ldap_pvt_hex_unescape( url );
        ludp->lud_host = LDAP_STRDUP( url );
 
        if( ludp->lud_host == NULL ) {
@@ -264,7 +265,7 @@ ldap_url_parse( LDAP_CONST char *url_in, LDAPURLDesc **ludpp )
 
        if( *p != '\0' ) {
                /* parse dn part */
-               hex_unescape( p );
+               ldap_pvt_hex_unescape( p );
                ludp->lud_dn = LDAP_STRDUP( p );
        } else {
                ludp->lud_dn = LDAP_STRDUP( "" );
@@ -294,7 +295,7 @@ ldap_url_parse( LDAP_CONST char *url_in, LDAPURLDesc **ludpp )
 
        if( *p != '\0' ) {
                /* parse attributes */
-               hex_unescape( p );
+               ldap_pvt_hex_unescape( p );
                ludp->lud_attrs = ldap_str2charray( p, "," );
 
                if( ludp->lud_attrs == NULL ) {
@@ -322,7 +323,7 @@ ldap_url_parse( LDAP_CONST char *url_in, LDAPURLDesc **ludpp )
 
        if( *p != '\0' ) {
                /* parse the scope */
-               hex_unescape( p );
+               ldap_pvt_hex_unescape( p );
                ludp->lud_scope = str2scope( p );
 
                if( ludp->lud_scope == -1 ) {
@@ -350,7 +351,7 @@ ldap_url_parse( LDAP_CONST char *url_in, LDAPURLDesc **ludpp )
 
        if( *p != '\0' ) {
                /* parse the filter */
-               hex_unescape( p );
+               ldap_pvt_hex_unescape( p );
 
                if( ! *p ) {
                        /* missing filter */
@@ -359,6 +360,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 ) {
@@ -396,7 +398,7 @@ 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( i == 0 ) {
@@ -413,6 +415,246 @@ ldap_url_parse( LDAP_CONST char *url_in, LDAPURLDesc **ludpp )
        return LDAP_URL_SUCCESS;
 }
 
+LDAPURLDesc *
+ldap_url_dup ( LDAPURLDesc *ludp )
+{
+       LDAPURLDesc *dest;
+
+       if ( ludp == NULL ) {
+               return NULL;
+       }
+
+       dest = LDAP_CALLOC( 1, sizeof(LDAPURLDesc) );
+       if (dest == NULL)
+               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;
+               }
+       }
+
+       dest->lud_ldaps = ludp->lud_ldaps;
+       dest->lud_port = ludp->lud_port;
+       dest->lud_scope = ludp->lud_scope;
+
+       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 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++) ;
+       /* ...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_host = specs[i];
+               specs[i] = NULL;
+               p = strchr(ludp->lud_host, ':');
+               if (p != NULL) {
+                       *p++ = 0;
+                       ludp->lud_port = atoi(p);
+               }
+               ludp->lud_ldaps = -1;   /* unknown (use TLS default) */
+               ludp->lud_next = *ludlist;
+               *ludlist = ludp;
+       }
+
+       /* this should be an array of NULLs now */
+       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 (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) {
+               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_host) + 1 + sizeof("ldapis:///");      /* prefix, host, /, and space */
+               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, "ldap%s://%s", (ludp->lud_ldaps == 1) ? "s" : "", 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 )
@@ -452,7 +694,6 @@ ldap_url_search( LDAP *ld, LDAP_CONST char *url, int attrsonly )
        int             err;
        LDAPURLDesc     *ludp;
        BerElement      *ber;
-       LDAPServer      *srv = NULL;
 
        if ( ldap_url_parse( url, &ludp ) != 0 ) {
                ld->ld_errno = LDAP_PARAM_ERROR;
@@ -464,38 +705,16 @@ ldap_url_search( LDAP *ld, LDAP_CONST char *url, int attrsonly )
                -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 );
+               err = ldap_send_server_request(
+                                       ld, ber, ld->ld_msgid, NULL,
+                                       (ludp->lud_host != NULL || ludp->lud_port != 0)
+                                               ? ludp : NULL,
+                                       NULL, 1 );
        }
 
        ldap_free_urldesc( ludp );
-
        return( err );
 }
 
@@ -542,8 +761,8 @@ 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
@@ -554,10 +773,10 @@ hex_unescape( char *s )
        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;
@@ -568,8 +787,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