Skip to content
Snippets Groups Projects
ldap.c 20.1 KiB
Newer Older
  • Learn to ignore specific revisions
  • /***************************************************************************
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
     *                      _   _ ____  _
     *  Project         ___| | | |  _ \| |
     *                 / __| | | | |_) | |
     *                | (__| |_| |  _ <| |___
    
     *                 \___|\___/|_| \_\_____|
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
     *
    
     * Copyright (C) 1998 - 2009, Daniel Stenberg, <daniel@haxx.se>, et al.
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
     *
    
     * This software is licensed as described in the file COPYING, which
     * you should have received as part of this distribution. The terms
     * are also available at http://curl.haxx.se/docs/copyright.html.
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
     *
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
     * You may opt to use, copy, modify, merge, publish, distribute and/or sell
     * copies of the Software, and permit persons to whom the Software is
    
     * furnished to do so, under the terms of the COPYING file.
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
     *
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
     * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
     * KIND, either express or implied.
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
     *
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
     * $Id$
    
     ***************************************************************************/
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    /* -- WIN32 approved -- */
    #include <stdio.h>
    #include <string.h>
    #include <stdarg.h>
    #include <stdlib.h>
    #include <ctype.h>
    #include <errno.h>
    
    
    #ifdef CURL_LDAP_HYBRID         /* If W$ definitions are needed. */
    # include <windows.h>
      /* Remember we are NOT in a W$ compiler! */
    # undef WIN32
    # undef _WIN32
    # undef __WIN32__
    #endif
    
    #ifdef CURL_LDAP_WIN            /* Use W$ LDAP implementation. */
    
    #  error Your Platform SDK is NOT sufficient for LDAP support! Update your Platform SDK, or disable LDAP support!
    
    #define LDAP_DEPRECATED 1       /* Be sure ldap_init() is defined. */
    
    #ifdef HAVE_LBER_H
    # include <lber.h>
    #endif
    
    #if (defined(HAVE_LDAP_SSL) && defined(HAVE_LDAP_SSL_H))
    
    #endif /* HAVE_LDAP_SSL && HAVE_LDAP_SSL_H */
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    #endif
    
    #ifdef HAVE_UNISTD_H
    # include <unistd.h>
    #endif
    
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    #include "urldata.h"
    #include <curl/curl.h>
    #include "sendf.h"
    #include "escape.h"
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    #include "transfer.h"
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    #include "strequal.h"
    #include "strtok.h"
    
    #include "curl_memory.h"
    
    #include "curl_base64.h"
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    
    #define _MPRINTF_REPLACE /* use our functions only */
    #include <curl/mprintf.h>
    
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    #include "memdebug.h"
    
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
        char   *lud_host;
        int     lud_port;
        char   *lud_dn;
        char  **lud_attrs;
        int     lud_scope;
        char   *lud_filter;
        char  **lud_exts;
    
    } CURL_LDAPURLDesc;
    
    #undef LDAPURLDesc
    #define LDAPURLDesc             CURL_LDAPURLDesc
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    static int  _ldap_url_parse (const struct connectdata *conn,
                                 LDAPURLDesc **ludp);
    static void _ldap_free_urldesc (LDAPURLDesc *ludp);
    
    
    #undef ldap_free_urldesc
    #define ldap_free_urldesc       _ldap_free_urldesc
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    #endif
    
    #ifdef DEBUG_LDAP
      #define LDAP_TRACE(x)   do { \
                                _ldap_trace ("%u: ", __LINE__); \
                                _ldap_trace x; \
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    
      static void _ldap_trace (const char *fmt, ...);
    #else
      #define LDAP_TRACE(x)   ((void)0)
    #endif
    
    
    static CURLcode Curl_ldap(struct connectdata *conn, bool *done);
    
    /*
     * LDAP protocol handler.
     */
    
    const struct Curl_handler Curl_handler_ldap = {
      "LDAP",                               /* scheme */
    
      ZERO_NULL,                            /* setup_connection */
    
      ZERO_NULL,                            /* done */
      ZERO_NULL,                            /* do_more */
      ZERO_NULL,                            /* connect_it */
      ZERO_NULL,                            /* connecting */
      ZERO_NULL,                            /* doing */
      ZERO_NULL,                            /* proto_getsock */
      ZERO_NULL,                            /* doing_getsock */
    
      ZERO_NULL,                            /* disconnect */
    
      PORT_LDAP,                            /* defport */
      PROT_LDAP                             /* protocol */
    };
    
    #ifdef HAVE_LDAP_SSL
    /*
     * LDAPS protocol handler.
     */
    
    const struct Curl_handler Curl_handler_ldaps = {
      "LDAPS",                              /* scheme */
    
      ZERO_NULL,                            /* setup_connection */
    
      ZERO_NULL,                            /* done */
      ZERO_NULL,                            /* do_more */
      ZERO_NULL,                            /* connect_it */
      ZERO_NULL,                            /* connecting */
      ZERO_NULL,                            /* doing */
      ZERO_NULL,                            /* proto_getsock */
      ZERO_NULL,                            /* doing_getsock */
    
      ZERO_NULL,                            /* disconnect */
    
      PORT_LDAPS,                           /* defport */
      PROT_LDAP | PROT_SSL                  /* protocol */
    };
    #endif
    
    
    static CURLcode Curl_ldap(struct connectdata *conn, bool *done)
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    {
    
      CURLcode status = CURLE_OK;
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
      int rc = 0;
    
      LDAP *server = NULL;
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
      LDAPURLDesc *ludp = NULL;
    
      LDAPMessage *result = NULL;
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
      int num = 0;
    
      struct SessionHandle *data=conn->data;
    
      int ldap_proto = LDAP_VERSION3;
    
      char *val_b64;
      size_t val_b64_sz;
    
      struct timeval ldap_timeout = {10,0}; /* 10 sec connection/search timeout */
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    
    
      infof(data, "LDAP local: LDAP Vendor = %s ; LDAP Version = %d\n",
              LDAP_VENDOR_NAME, LDAP_VENDOR_VERSION);
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
      infof(data, "LDAP local: %s\n", data->change.url);
    
    
    #ifdef HAVE_LDAP_URL_PARSE
    
      rc = ldap_url_parse(data->change.url, &ludp);
    
    #else
      rc = _ldap_url_parse(conn, &ludp);
    
        failf(data, "LDAP local: %s", ldap_err2string(rc));
        status = CURLE_LDAP_INVALID_URL;
        goto quit;
      }
    
      /* Get the URL scheme ( either ldap or ldaps ) */
    
        ldap_ssl = 1;
      infof(data, "LDAP local: trying to establish %s connection\n",
              ldap_ssl ? "encrypted" : "cleartext");
    
    
      ldap_set_option(NULL, LDAP_OPT_NETWORK_TIMEOUT, &ldap_timeout);
    
      ldap_set_option(NULL, LDAP_OPT_PROTOCOL_VERSION, &ldap_proto);
    
    
        /* Win32 LDAP SDK doesnt support insecure mode without CA! */
    
        server = ldap_sslinit(conn->host.name, (int)conn->port, 1);
        ldap_set_option(server, LDAP_OPT_SSL, LDAP_OPT_ON);
    #else
    
        int ldap_option;
    
        char* ldap_ca = data->set.str[STRING_SSL_CAFILE];
    
    #if defined(CURL_HAS_NOVELL_LDAPSDK)
        rc = ldapssl_client_init(NULL, NULL);
    
          failf(data, "LDAP local: ldapssl_client_init %s", ldap_err2string(rc));
    
          /* Novell SDK supports DER or BASE64 files. */
    
          int cert_type = LDAPSSL_CERT_FILETYPE_B64;
    
             (Curl_raw_equal(data->set.str[STRING_CERT_TYPE], "DER")))
    
            cert_type = LDAPSSL_CERT_FILETYPE_DER;
    
            failf(data, "LDAP local: ERROR %s CA cert not set!",
                  (cert_type == LDAPSSL_CERT_FILETYPE_DER ? "DER" : "PEM"));
            status = CURLE_SSL_CERTPROBLEM;
            goto quit;
          }
          infof(data, "LDAP local: using %s CA cert '%s'\n",
                  (cert_type == LDAPSSL_CERT_FILETYPE_DER ? "DER" : "PEM"),
                  ldap_ca);
          rc = ldapssl_add_trusted_cert(ldap_ca, cert_type);
    
            failf(data, "LDAP local: ERROR setting %s CA cert: %s",
                    (cert_type == LDAPSSL_CERT_FILETYPE_DER ? "DER" : "PEM"),
    
                    ldap_err2string(rc));
            status = CURLE_SSL_CERTPROBLEM;
            goto quit;
          }
          ldap_option = LDAPSSL_VERIFY_SERVER;
        } else {
          ldap_option = LDAPSSL_VERIFY_NONE;
        }
        rc = ldapssl_set_verify_mode(ldap_option);
    
          failf(data, "LDAP local: ERROR setting cert verify mode: %s",
    
          status = CURLE_SSL_CERTPROBLEM;
          goto quit;
        }
        server = ldapssl_init(conn->host.name, (int)conn->port, 1);
    
          failf(data, "LDAP local: Cannot connect to %s:%d",
                  conn->host.name, conn->port);
          status = CURLE_COULDNT_CONNECT;
          goto quit;
        }
    #elif defined(LDAP_OPT_X_TLS)
    
          /* OpenLDAP SDK supports BASE64 files. */
    
             (!Curl_raw_equal(data->set.str[STRING_CERT_TYPE], "PEM"))) {
    
            failf(data, "LDAP local: ERROR OpenLDAP does only support PEM cert-type!");
            status = CURLE_SSL_CERTPROBLEM;
            goto quit;
          }
    
            failf(data, "LDAP local: ERROR PEM CA cert not set!");
            status = CURLE_SSL_CERTPROBLEM;
            goto quit;
          }
          infof(data, "LDAP local: using PEM CA cert: %s\n", ldap_ca);
    
          rc = ldap_set_option(NULL, LDAP_OPT_X_TLS_CACERTFILE, ldap_ca);
    
            failf(data, "LDAP local: ERROR setting PEM CA cert: %s",
                    ldap_err2string(rc));
            status = CURLE_SSL_CERTPROBLEM;
            goto quit;
          }
          ldap_option = LDAP_OPT_X_TLS_DEMAND;
        } else {
          ldap_option = LDAP_OPT_X_TLS_NEVER;
        }
        rc = ldap_set_option(NULL, LDAP_OPT_X_TLS_REQUIRE_CERT, &ldap_option);
    
          failf(data, "LDAP local: ERROR setting cert verify mode: %s",
    
                  ldap_err2string(rc));
          status = CURLE_SSL_CERTPROBLEM;
          goto quit;
        }
        server = ldap_init(conn->host.name, (int)conn->port);
    
          failf(data, "LDAP local: Cannot connect to %s:%d",
                  conn->host.name, conn->port);
          status = CURLE_COULDNT_CONNECT;
          goto quit;
        }
        ldap_option = LDAP_OPT_X_TLS_HARD;
        rc = ldap_set_option(server, LDAP_OPT_X_TLS, &ldap_option);
    
          failf(data, "LDAP local: ERROR setting SSL/TLS mode: %s",
                  ldap_err2string(rc));
          status = CURLE_SSL_CERTPROBLEM;
          goto quit;
        }
    
        rc = ldap_start_tls_s(server, NULL, NULL);
    
          failf(data, "LDAP local: ERROR starting SSL/TLS mode: %s",
                  ldap_err2string(rc));
          status = CURLE_SSL_CERTPROBLEM;
          goto quit;
        }
    
    #else
        /* we should probably never come up to here since configure
           should check in first place if we can support LDAP SSL/TLS */
        failf(data, "LDAP local: SSL/TLS not supported with this version "
                "of the OpenLDAP toolkit\n");
        status = CURLE_SSL_CERTPROBLEM;
        goto quit;
    #endif
    
    #endif
    #endif /* CURL_LDAP_USE_SSL */
      } else {
        server = ldap_init(conn->host.name, (int)conn->port);
    
          failf(data, "LDAP local: Cannot connect to %s:%d",
                  conn->host.name, conn->port);
          status = CURLE_COULDNT_CONNECT;
          goto quit;
        }
    
    #ifdef CURL_LDAP_WIN
      ldap_set_option(server, LDAP_OPT_PROTOCOL_VERSION, &ldap_proto);
    #endif
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    
    
      rc = ldap_simple_bind_s(server,
                              conn->bits.user_passwd ? conn->user : NULL,
                              conn->bits.user_passwd ? conn->passwd : NULL);
    
        ldap_proto = LDAP_VERSION2;
    
        ldap_set_option(server, LDAP_OPT_PROTOCOL_VERSION, &ldap_proto);
        rc = ldap_simple_bind_s(server,
                                conn->bits.user_passwd ? conn->user : NULL,
                                conn->bits.user_passwd ? conn->passwd : NULL);
    
         failf(data, "LDAP local: ldap_simple_bind_s %s", ldap_err2string(rc));
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
         status = CURLE_LDAP_CANNOT_BIND;
         goto quit;
      }
    
    
      rc = ldap_search_s(server, ludp->lud_dn, ludp->lud_scope,
                         ludp->lud_filter, ludp->lud_attrs, 0, &result);
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    
    
      if(rc != 0 && rc != LDAP_SIZELIMIT_EXCEEDED) {
    
        failf(data, "LDAP remote: %s", ldap_err2string(rc));
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
        status = CURLE_LDAP_SEARCH_FAILED;
        goto quit;
      }
    
    
      for(num = 0, entryIterator = ldap_first_entry(server, result);
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
          entryIterator;
    
          entryIterator = ldap_next_entry(server, entryIterator), num++)
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
      {
    
        BerElement *ber = NULL;
        char  *attribute;       /*! suspicious that this isn't 'const' */
        char  *dn = ldap_get_dn(server, entryIterator);
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
        int i;
    
    
        Curl_client_write(conn, CLIENTWRITE_BODY, (char *)"DN: ", 4);
        Curl_client_write(conn, CLIENTWRITE_BODY, (char *)dn, 0);
        Curl_client_write(conn, CLIENTWRITE_BODY, (char *)"\n", 1);
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    
    
        for (attribute = ldap_first_attribute(server, entryIterator, &ber);
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
             attribute;
    
             attribute = ldap_next_attribute(server, entryIterator, ber))
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
        {
    
          BerValue **vals = ldap_get_values_len(server, entryIterator, attribute);
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
          {
            for (i = 0; (vals[i] != NULL); i++)
            {
    
              Curl_client_write(conn, CLIENTWRITE_BODY, (char *)"\t", 1);
              Curl_client_write(conn, CLIENTWRITE_BODY, (char *) attribute, 0);
              Curl_client_write(conn, CLIENTWRITE_BODY, (char *)": ", 2);
    
                  (strcmp(";binary",
                          (char *)attribute +
                          (strlen((char *)attribute) - 7)) == 0)) {
                /* Binary attribute, encode to base64. */
    
                val_b64_sz = Curl_base64_encode(data,
    
                  Curl_client_write(conn, CLIENTWRITE_BODY, val_b64, val_b64_sz);
    
                Curl_client_write(conn, CLIENTWRITE_BODY, vals[i]->bv_val,
    
              Curl_client_write(conn, CLIENTWRITE_BODY, (char *)"\n", 0);
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
            }
    
            /* Free memory used to store values */
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
          }
    
          Curl_client_write(conn, CLIENTWRITE_BODY, (char *)"\n", 1);
    
          dlsize++;
          Curl_pgrsSetDownloadCounter(data, dlsize);
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
        }
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
      }
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    
    quit:
    
        ldap_msgfree(result);
        LDAP_TRACE (("Received %d entries\n", num));
      }
    
        infof(data, "There are more than %d entries\n", num);
    
    #if defined(HAVE_LDAP_SSL) && defined(CURL_HAS_NOVELL_LDAPSDK)
    
    #endif /* HAVE_LDAP_SSL && CURL_HAS_NOVELL_LDAPSDK */
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    
      /* no data to transfer */
    
      Curl_setup_transfer(conn, -1, -1, FALSE, NULL, -1, NULL);
    
      conn->bits.close = TRUE;
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
      return status;
    }
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    
    #ifdef DEBUG_LDAP
    static void _ldap_trace (const char *fmt, ...)
    {
      static int do_trace = -1;
      va_list args;
    
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
        const char *env = getenv("CURL_TRACE");
        do_trace = (env && atoi(env) > 0);
      }
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
        return;
    
      va_start (args, fmt);
      vfprintf (stderr, fmt, args);
      va_end (args);
    }
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    /*
     * Return scope-value for a scope-string.
     */
    static int str2scope (const char *p)
    {
    
      if(!strequal(p, "one"))
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
         return LDAP_SCOPE_ONELEVEL;
    
      if(!strequal(p, "onetree"))
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
         return LDAP_SCOPE_ONELEVEL;
    
      if(!strequal(p, "base"))
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
         return LDAP_SCOPE_BASE;
    
      if(!strequal(p, "sub"))
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
         return LDAP_SCOPE_SUBTREE;
    
      if(!strequal( p, "subtree"))
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
         return LDAP_SCOPE_SUBTREE;
      return (-1);
    }
    
    /*
     * Split 'str' into strings separated by commas.
     * Note: res[] points into 'str'.
     */
    static char **split_str (char *str)
    {
      char **res, *lasts, *s;
      int  i;
    
      for (i = 2, s = strchr(str,','); s; i++)
         s = strchr(++s,',');
    
      res = calloc(i, sizeof(char*));
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
        return NULL;
    
      for (i = 0, s = strtok_r(str, ",", &lasts); s;
           s = strtok_r(NULL, ",", &lasts), i++)
        res[i] = s;
      return res;
    }
    
    /*
     * Unescape the LDAP-URL components
     */
    
    static bool unescape_elements (void *data, LDAPURLDesc *ludp)
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    {
      int i;
    
    
        ludp->lud_filter = curl_easy_unescape(data, ludp->lud_filter, 0, NULL);
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
           return (FALSE);
      }
    
      for (i = 0; ludp->lud_attrs && ludp->lud_attrs[i]; i++) {
    
        ludp->lud_attrs[i] = curl_easy_unescape(data, ludp->lud_attrs[i], 0, NULL);
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
           return (FALSE);
      }
    
      for (i = 0; ludp->lud_exts && ludp->lud_exts[i]; i++) {
    
        ludp->lud_exts[i] = curl_easy_unescape(data, ludp->lud_exts[i], 0, NULL);
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
           return (FALSE);
      }
    
        char *new_dn = curl_easy_unescape(data, dn, 0, NULL);
    
        ludp->lud_dn = new_dn;
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
      return (TRUE);
    }
    
    /*
     * Break apart the pieces of an LDAP URL.
     * Syntax:
     *   ldap://<hostname>:<port>/<base_dn>?<attributes>?<scope>?<filter>?<ext>
     *
     * <hostname> already known from 'conn->host.name'.
     * <port>     already known from 'conn->remote_port'.
    
     * extract the rest from 'conn->data->state.path+1'. All fields are optional.
    
     * e.g.
     *   ldap://<hostname>:<port>/?<attributes>?<scope>?<filter>
     * yields ludp->lud_dn = "".
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
     *
    
     * Defined in RFC4516 section 2.
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
     */
    static int _ldap_url_parse2 (const struct connectdata *conn, LDAPURLDesc *ludp)
    {
      char *p, *q;
      int i;
    
    
          !conn->data->state.path ||
          conn->data->state.path[0] != '/' ||
    
    Yang Tse's avatar
    Yang Tse committed
          !checkprefix("LDAP", conn->data->change.url))
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    
      ludp->lud_scope = LDAP_SCOPE_BASE;
      ludp->lud_port  = conn->remote_port;
      ludp->lud_host  = conn->host.name;
    
      /* parse DN (Distinguished Name).
       */
    
      ludp->lud_dn = strdup(conn->data->state.path+1);
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    
      p = strchr(ludp->lud_dn, '?');
    
      LDAP_TRACE (("DN '%.*s'\n", p ? (size_t)(p-ludp->lud_dn) :
                   strlen(ludp->lud_dn), ludp->lud_dn));
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    
      *p++ = '\0';
    
      /* parse attributes. skip "??".
       */
      q = strchr(p, '?');
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
        ludp->lud_attrs = split_str(p);
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    
        for (i = 0; ludp->lud_attrs[i]; i++)
    
          LDAP_TRACE (("attr[%d] '%s'\n", i, ludp->lud_attrs[i]));
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
      }
    
      p = q;
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    
      /* parse scope. skip "??"
       */
      q = strchr(p, '?');
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
        ludp->lud_scope = str2scope(p);
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
        LDAP_TRACE (("scope %d\n", ludp->lud_scope));
      }
    
      p = q;
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    
      /* parse filter
       */
      q = strchr(p, '?');
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    
      ludp->lud_filter = p;
      LDAP_TRACE (("filter '%s'\n", ludp->lud_filter));
    
      p = q;
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    
      /* parse extensions
       */
      ludp->lud_exts = split_str(p);
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    
      for (i = 0; ludp->lud_exts[i]; i++)
    
        LDAP_TRACE (("exts[%d] '%s'\n", i, ludp->lud_exts[i]));
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
    
    
      if(!unescape_elements(conn->data, ludp))
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
      return LDAP_SUCCESS;
    }
    
    static int _ldap_url_parse (const struct connectdata *conn,
                                LDAPURLDesc **ludpp)
    {
    
      LDAPURLDesc *ludp = calloc(1, sizeof(*ludp));
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
      int rc;
    
      *ludpp = NULL;
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
         return LDAP_NO_MEMORY;
    
      rc = _ldap_url_parse2 (conn, ludp);
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
        _ldap_free_urldesc(ludp);
        ludp = NULL;
      }
      *ludpp = ludp;
      return (rc);
    }
    
    static void _ldap_free_urldesc (LDAPURLDesc *ludp)
    {
      int i;
    
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
         return;
    
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
         free(ludp->lud_dn);
    
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
         free(ludp->lud_filter);
    
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
        for (i = 0; ludp->lud_attrs[i]; i++)
           free(ludp->lud_attrs[i]);
        free(ludp->lud_attrs);
      }
    
    
    Daniel Stenberg's avatar
    Daniel Stenberg committed
        for (i = 0; ludp->lud_exts[i]; i++)
           free(ludp->lud_exts[i]);
        free(ludp->lud_exts);
      }
      free (ludp);
    }
    
    #endif  /* !HAVE_LDAP_URL_PARSE */
    
    #endif  /* CURL_DISABLE_LDAP */