2002-09-03 07:52:59 -04:00
|
|
|
/***************************************************************************
|
2004-05-03 05:14:12 -04:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
2006-10-29 09:58:59 -05:00
|
|
|
* \___|\___/|_| \_\_____|
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2010-06-01 11:25:03 -04:00
|
|
|
* Copyright (C) 1998 - 2010, Daniel Stenberg, <daniel@haxx.se>, et al.
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2002-09-03 07:52:59 -04:00
|
|
|
* 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.
|
2004-05-03 05:14:12 -04:00
|
|
|
*
|
2001-01-03 04:29:33 -05:00
|
|
|
* 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
|
2002-09-03 07:52:59 -04:00
|
|
|
* furnished to do so, under the terms of the COPYING file.
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2001-01-03 04:29:33 -05:00
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2002-09-03 07:52:59 -04:00
|
|
|
***************************************************************************/
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2000-08-24 10:26:33 -04:00
|
|
|
#include "setup.h"
|
|
|
|
|
2010-05-24 18:44:42 -04:00
|
|
|
#if !defined(CURL_DISABLE_LDAP) && !defined(USE_OPENLDAP)
|
2010-06-01 11:25:03 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Notice that USE_OPENLDAP is only a source code selection switch. When
|
|
|
|
* libcurl is built with USE_OPENLDAP defined the libcurl source code that
|
|
|
|
* gets compiled is the code from openldap.c, otherwise the code that gets
|
|
|
|
* compiled is the code from ldap.c.
|
|
|
|
*
|
|
|
|
* When USE_OPENLDAP is defined a recent version of the OpenLDAP library
|
|
|
|
* might be required for compilation and runtime. In order to use ancient
|
|
|
|
* OpenLDAP library versions, USE_OPENLDAP shall not be defined.
|
|
|
|
*/
|
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
/* -- WIN32 approved -- */
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
2010-06-04 09:14:31 -04:00
|
|
|
#ifdef CURL_LDAP_WIN /* Use Windows LDAP implementation. */
|
2004-09-26 02:53:53 -04:00
|
|
|
# include <winldap.h>
|
2007-10-09 19:25:58 -04:00
|
|
|
# ifndef LDAP_VENDOR_NAME
|
2009-03-08 18:45:59 -04:00
|
|
|
# error Your Platform SDK is NOT sufficient for LDAP support! Update your Platform SDK, or disable LDAP support!
|
2007-10-09 19:25:58 -04:00
|
|
|
# else
|
|
|
|
# include <winber.h>
|
|
|
|
# endif
|
2007-08-11 16:57:54 -04:00
|
|
|
#else
|
2010-06-04 09:14:31 -04:00
|
|
|
# define LDAP_DEPRECATED 1 /* Be sure ldap_init() is defined. */
|
|
|
|
# ifdef HAVE_LBER_H
|
|
|
|
# include <lber.h>
|
|
|
|
# endif
|
2007-08-11 16:57:54 -04:00
|
|
|
# include <ldap.h>
|
2010-06-04 09:14:31 -04:00
|
|
|
# if (defined(HAVE_LDAP_SSL) && defined(HAVE_LDAP_SSL_H))
|
|
|
|
# include <ldap_ssl.h>
|
|
|
|
# endif /* HAVE_LDAP_SSL && HAVE_LDAP_SSL_H */
|
2004-05-03 05:14:12 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef HAVE_UNISTD_H
|
|
|
|
# include <unistd.h>
|
|
|
|
#endif
|
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
#include "urldata.h"
|
|
|
|
#include <curl/curl.h>
|
|
|
|
#include "sendf.h"
|
|
|
|
#include "escape.h"
|
2009-11-02 15:04:18 -05:00
|
|
|
#include "progress.h"
|
2001-10-25 04:28:29 -04:00
|
|
|
#include "transfer.h"
|
2004-05-03 05:14:12 -04:00
|
|
|
#include "strequal.h"
|
|
|
|
#include "strtok.h"
|
2007-08-11 16:57:54 -04:00
|
|
|
#include "curl_ldap.h"
|
2009-04-21 07:46:16 -04:00
|
|
|
#include "curl_memory.h"
|
2008-08-16 20:25:38 -04:00
|
|
|
#include "curl_base64.h"
|
2008-10-23 07:49:19 -04:00
|
|
|
#include "rawstr.h"
|
1999-12-29 09:20:26 -05:00
|
|
|
|
|
|
|
#define _MPRINTF_REPLACE /* use our functions only */
|
|
|
|
#include <curl/mprintf.h>
|
|
|
|
|
2004-05-03 05:14:12 -04:00
|
|
|
#include "memdebug.h"
|
|
|
|
|
2007-08-11 16:57:54 -04:00
|
|
|
#ifndef HAVE_LDAP_URL_PARSE
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2007-08-11 16:57:54 -04:00
|
|
|
/* Use our own implementation. */
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2007-08-13 09:03:08 -04:00
|
|
|
typedef struct {
|
2004-05-03 05:14:12 -04:00
|
|
|
char *lud_host;
|
|
|
|
int lud_port;
|
|
|
|
char *lud_dn;
|
|
|
|
char **lud_attrs;
|
|
|
|
int lud_scope;
|
|
|
|
char *lud_filter;
|
|
|
|
char **lud_exts;
|
2007-08-13 09:03:08 -04:00
|
|
|
} CURL_LDAPURLDesc;
|
|
|
|
|
|
|
|
#undef LDAPURLDesc
|
|
|
|
#define LDAPURLDesc CURL_LDAPURLDesc
|
2003-09-01 04:23:31 -04:00
|
|
|
|
2004-05-03 05:14:12 -04:00
|
|
|
static int _ldap_url_parse (const struct connectdata *conn,
|
|
|
|
LDAPURLDesc **ludp);
|
|
|
|
static void _ldap_free_urldesc (LDAPURLDesc *ludp);
|
|
|
|
|
2007-08-13 09:03:08 -04:00
|
|
|
#undef ldap_free_urldesc
|
|
|
|
#define ldap_free_urldesc _ldap_free_urldesc
|
2004-05-03 05:14:12 -04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef DEBUG_LDAP
|
|
|
|
#define LDAP_TRACE(x) do { \
|
|
|
|
_ldap_trace ("%u: ", __LINE__); \
|
|
|
|
_ldap_trace x; \
|
2007-11-05 04:45:09 -05:00
|
|
|
} while(0)
|
2004-05-03 05:14:12 -04:00
|
|
|
|
|
|
|
static void _ldap_trace (const char *fmt, ...);
|
|
|
|
#else
|
|
|
|
#define LDAP_TRACE(x) ((void)0)
|
|
|
|
#endif
|
|
|
|
|
2003-09-01 04:23:31 -04:00
|
|
|
|
2007-10-12 09:36:37 -04:00
|
|
|
static CURLcode Curl_ldap(struct connectdata *conn, bool *done);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* LDAP protocol handler.
|
|
|
|
*/
|
|
|
|
|
|
|
|
const struct Curl_handler Curl_handler_ldap = {
|
|
|
|
"LDAP", /* scheme */
|
2007-10-17 12:58:32 -04:00
|
|
|
ZERO_NULL, /* setup_connection */
|
2007-10-12 09:36:37 -04:00
|
|
|
Curl_ldap, /* do_it */
|
2007-10-17 12:58:32 -04:00
|
|
|
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 */
|
2008-12-19 16:14:52 -05:00
|
|
|
ZERO_NULL, /* perform_getsock */
|
2007-10-17 12:58:32 -04:00
|
|
|
ZERO_NULL, /* disconnect */
|
2007-10-12 09:36:37 -04:00
|
|
|
PORT_LDAP, /* defport */
|
|
|
|
PROT_LDAP /* protocol */
|
|
|
|
};
|
|
|
|
|
|
|
|
#ifdef HAVE_LDAP_SSL
|
|
|
|
/*
|
|
|
|
* LDAPS protocol handler.
|
|
|
|
*/
|
|
|
|
|
|
|
|
const struct Curl_handler Curl_handler_ldaps = {
|
|
|
|
"LDAPS", /* scheme */
|
2007-10-17 12:58:32 -04:00
|
|
|
ZERO_NULL, /* setup_connection */
|
2007-10-12 09:36:37 -04:00
|
|
|
Curl_ldap, /* do_it */
|
2007-10-17 12:58:32 -04:00
|
|
|
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 */
|
2008-12-19 16:14:52 -05:00
|
|
|
ZERO_NULL, /* perform_getsock */
|
2007-10-17 12:58:32 -04:00
|
|
|
ZERO_NULL, /* disconnect */
|
2007-10-12 09:36:37 -04:00
|
|
|
PORT_LDAPS, /* defport */
|
|
|
|
PROT_LDAP | PROT_SSL /* protocol */
|
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
static CURLcode Curl_ldap(struct connectdata *conn, bool *done)
|
1999-12-29 09:20:26 -05:00
|
|
|
{
|
2000-05-22 10:12:12 -04:00
|
|
|
CURLcode status = CURLE_OK;
|
2004-05-03 05:14:12 -04:00
|
|
|
int rc = 0;
|
2007-08-16 11:23:39 -04:00
|
|
|
LDAP *server = NULL;
|
2004-05-03 05:14:12 -04:00
|
|
|
LDAPURLDesc *ludp = NULL;
|
2007-08-15 04:18:37 -04:00
|
|
|
LDAPMessage *result = NULL;
|
2007-08-11 16:57:54 -04:00
|
|
|
LDAPMessage *entryIterator;
|
2004-05-06 03:22:32 -04:00
|
|
|
int num = 0;
|
2001-08-30 18:48:34 -04:00
|
|
|
struct SessionHandle *data=conn->data;
|
2007-09-15 16:03:03 -04:00
|
|
|
int ldap_proto = LDAP_VERSION3;
|
2007-08-16 10:08:47 -04:00
|
|
|
int ldap_ssl = 0;
|
2005-10-31 03:55:01 -05:00
|
|
|
char *val_b64;
|
|
|
|
size_t val_b64_sz;
|
2009-11-02 13:49:56 -05:00
|
|
|
curl_off_t dlsize=0;
|
2007-08-20 12:30:41 -04:00
|
|
|
#ifdef LDAP_OPT_NETWORK_TIMEOUT
|
2007-08-16 10:08:47 -04:00
|
|
|
struct timeval ldap_timeout = {10,0}; /* 10 sec connection/search timeout */
|
2007-08-20 12:30:41 -04:00
|
|
|
#endif
|
1999-12-29 09:20:26 -05:00
|
|
|
|
2005-02-09 08:06:40 -05:00
|
|
|
*done = TRUE; /* unconditionally */
|
2007-08-20 12:30:41 -04:00
|
|
|
infof(data, "LDAP local: LDAP Vendor = %s ; LDAP Version = %d\n",
|
|
|
|
LDAP_VENDOR_NAME, LDAP_VENDOR_VERSION);
|
2004-05-03 05:14:12 -04:00
|
|
|
infof(data, "LDAP local: %s\n", data->change.url);
|
|
|
|
|
2007-08-22 14:05:46 -04:00
|
|
|
#ifdef HAVE_LDAP_URL_PARSE
|
2007-08-16 10:08:47 -04:00
|
|
|
rc = ldap_url_parse(data->change.url, &ludp);
|
2007-08-22 14:05:46 -04:00
|
|
|
#else
|
|
|
|
rc = _ldap_url_parse(conn, &ludp);
|
2007-08-16 10:08:47 -04:00
|
|
|
#endif
|
2007-11-05 04:45:09 -05:00
|
|
|
if(rc != 0) {
|
2007-08-16 10:08:47 -04:00
|
|
|
failf(data, "LDAP local: %s", ldap_err2string(rc));
|
|
|
|
status = CURLE_LDAP_INVALID_URL;
|
|
|
|
goto quit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get the URL scheme ( either ldap or ldaps ) */
|
2009-12-17 10:45:04 -05:00
|
|
|
if(conn->protocol & PROT_SSL)
|
2007-08-16 10:08:47 -04:00
|
|
|
ldap_ssl = 1;
|
|
|
|
infof(data, "LDAP local: trying to establish %s connection\n",
|
|
|
|
ldap_ssl ? "encrypted" : "cleartext");
|
|
|
|
|
2007-08-20 12:30:41 -04:00
|
|
|
#ifdef LDAP_OPT_NETWORK_TIMEOUT
|
2007-08-16 10:08:47 -04:00
|
|
|
ldap_set_option(NULL, LDAP_OPT_NETWORK_TIMEOUT, &ldap_timeout);
|
2007-08-20 12:30:41 -04:00
|
|
|
#endif
|
2007-08-16 10:08:47 -04:00
|
|
|
ldap_set_option(NULL, LDAP_OPT_PROTOCOL_VERSION, &ldap_proto);
|
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if(ldap_ssl) {
|
2007-08-16 10:08:47 -04:00
|
|
|
#ifdef HAVE_LDAP_SSL
|
|
|
|
#ifdef CURL_LDAP_WIN
|
2007-08-22 20:10:56 -04:00
|
|
|
/* Win32 LDAP SDK doesnt support insecure mode without CA! */
|
2007-08-16 10:08:47 -04:00
|
|
|
server = ldap_sslinit(conn->host.name, (int)conn->port, 1);
|
|
|
|
ldap_set_option(server, LDAP_OPT_SSL, LDAP_OPT_ON);
|
|
|
|
#else
|
2007-08-20 19:31:26 -04:00
|
|
|
int ldap_option;
|
2007-08-22 20:10:56 -04:00
|
|
|
char* ldap_ca = data->set.str[STRING_SSL_CAFILE];
|
2007-08-20 12:30:41 -04:00
|
|
|
#if defined(CURL_HAS_NOVELL_LDAPSDK)
|
|
|
|
rc = ldapssl_client_init(NULL, NULL);
|
2007-11-05 04:45:09 -05:00
|
|
|
if(rc != LDAP_SUCCESS) {
|
2007-08-22 20:10:56 -04:00
|
|
|
failf(data, "LDAP local: ldapssl_client_init %s", ldap_err2string(rc));
|
2007-08-16 10:08:47 -04:00
|
|
|
status = CURLE_SSL_CERTPROBLEM;
|
|
|
|
goto quit;
|
|
|
|
}
|
2007-11-05 04:45:09 -05:00
|
|
|
if(data->set.ssl.verifypeer) {
|
2007-08-20 12:30:41 -04:00
|
|
|
/* Novell SDK supports DER or BASE64 files. */
|
2007-08-22 20:10:56 -04:00
|
|
|
int cert_type = LDAPSSL_CERT_FILETYPE_B64;
|
2007-11-05 04:45:09 -05:00
|
|
|
if((data->set.str[STRING_CERT_TYPE]) &&
|
2008-10-16 04:23:48 -04:00
|
|
|
(Curl_raw_equal(data->set.str[STRING_CERT_TYPE], "DER")))
|
2007-08-22 20:10:56 -04:00
|
|
|
cert_type = LDAPSSL_CERT_FILETYPE_DER;
|
2007-11-05 04:45:09 -05:00
|
|
|
if(!ldap_ca) {
|
2007-08-22 20:10:56 -04:00
|
|
|
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);
|
2007-11-05 04:45:09 -05:00
|
|
|
if(rc != LDAP_SUCCESS) {
|
2007-08-22 20:10:56 -04:00
|
|
|
failf(data, "LDAP local: ERROR setting %s CA cert: %s",
|
|
|
|
(cert_type == LDAPSSL_CERT_FILETYPE_DER ? "DER" : "PEM"),
|
2007-08-20 12:30:41 -04:00
|
|
|
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);
|
2007-11-05 04:45:09 -05:00
|
|
|
if(rc != LDAP_SUCCESS) {
|
2007-08-22 20:10:56 -04:00
|
|
|
failf(data, "LDAP local: ERROR setting cert verify mode: %s",
|
2007-08-20 12:30:41 -04:00
|
|
|
ldap_err2string(rc));
|
2007-08-16 10:08:47 -04:00
|
|
|
status = CURLE_SSL_CERTPROBLEM;
|
|
|
|
goto quit;
|
|
|
|
}
|
|
|
|
server = ldapssl_init(conn->host.name, (int)conn->port, 1);
|
2007-11-05 04:45:09 -05:00
|
|
|
if(server == NULL) {
|
2010-02-04 14:44:31 -05:00
|
|
|
failf(data, "LDAP local: Cannot connect to %s:%hu",
|
2007-08-20 12:30:41 -04:00
|
|
|
conn->host.name, conn->port);
|
|
|
|
status = CURLE_COULDNT_CONNECT;
|
|
|
|
goto quit;
|
|
|
|
}
|
|
|
|
#elif defined(LDAP_OPT_X_TLS)
|
2007-11-05 04:45:09 -05:00
|
|
|
if(data->set.ssl.verifypeer) {
|
2007-08-20 12:30:41 -04:00
|
|
|
/* OpenLDAP SDK supports BASE64 files. */
|
2007-11-05 04:45:09 -05:00
|
|
|
if((data->set.str[STRING_CERT_TYPE]) &&
|
2008-10-16 04:23:48 -04:00
|
|
|
(!Curl_raw_equal(data->set.str[STRING_CERT_TYPE], "PEM"))) {
|
2007-08-25 08:10:30 -04:00
|
|
|
failf(data, "LDAP local: ERROR OpenLDAP does only support PEM cert-type!");
|
|
|
|
status = CURLE_SSL_CERTPROBLEM;
|
|
|
|
goto quit;
|
|
|
|
}
|
2007-11-05 04:45:09 -05:00
|
|
|
if(!ldap_ca) {
|
2007-08-22 20:10:56 -04:00
|
|
|
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);
|
2007-08-20 12:30:41 -04:00
|
|
|
rc = ldap_set_option(NULL, LDAP_OPT_X_TLS_CACERTFILE, ldap_ca);
|
2007-11-05 04:45:09 -05:00
|
|
|
if(rc != LDAP_SUCCESS) {
|
2007-08-20 12:30:41 -04:00
|
|
|
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);
|
2007-11-05 04:45:09 -05:00
|
|
|
if(rc != LDAP_SUCCESS) {
|
2007-08-22 20:10:56 -04:00
|
|
|
failf(data, "LDAP local: ERROR setting cert verify mode: %s",
|
2007-08-20 12:30:41 -04:00
|
|
|
ldap_err2string(rc));
|
|
|
|
status = CURLE_SSL_CERTPROBLEM;
|
|
|
|
goto quit;
|
|
|
|
}
|
|
|
|
server = ldap_init(conn->host.name, (int)conn->port);
|
2007-11-05 04:45:09 -05:00
|
|
|
if(server == NULL) {
|
2010-02-04 14:44:31 -05:00
|
|
|
failf(data, "LDAP local: Cannot connect to %s:%hu",
|
2007-08-20 12:30:41 -04:00
|
|
|
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);
|
2007-11-05 04:45:09 -05:00
|
|
|
if(rc != LDAP_SUCCESS) {
|
2007-08-20 12:30:41 -04:00
|
|
|
failf(data, "LDAP local: ERROR setting SSL/TLS mode: %s",
|
|
|
|
ldap_err2string(rc));
|
|
|
|
status = CURLE_SSL_CERTPROBLEM;
|
|
|
|
goto quit;
|
|
|
|
}
|
2007-08-22 06:14:57 -04:00
|
|
|
/*
|
2007-08-20 12:30:41 -04:00
|
|
|
rc = ldap_start_tls_s(server, NULL, NULL);
|
2007-11-05 04:45:09 -05:00
|
|
|
if(rc != LDAP_SUCCESS) {
|
2007-08-20 12:30:41 -04:00
|
|
|
failf(data, "LDAP local: ERROR starting SSL/TLS mode: %s",
|
|
|
|
ldap_err2string(rc));
|
|
|
|
status = CURLE_SSL_CERTPROBLEM;
|
|
|
|
goto quit;
|
|
|
|
}
|
2007-08-22 06:14:57 -04:00
|
|
|
*/
|
2007-08-20 12:30:41 -04:00
|
|
|
#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
|
2007-08-16 10:08:47 -04:00
|
|
|
#endif
|
|
|
|
#endif /* CURL_LDAP_USE_SSL */
|
|
|
|
} else {
|
|
|
|
server = ldap_init(conn->host.name, (int)conn->port);
|
2007-11-05 04:45:09 -05:00
|
|
|
if(server == NULL) {
|
2010-02-04 14:44:31 -05:00
|
|
|
failf(data, "LDAP local: Cannot connect to %s:%hu",
|
2007-08-20 12:30:41 -04:00
|
|
|
conn->host.name, conn->port);
|
|
|
|
status = CURLE_COULDNT_CONNECT;
|
|
|
|
goto quit;
|
|
|
|
}
|
2004-02-06 02:28:49 -05:00
|
|
|
}
|
2007-09-15 16:03:03 -04:00
|
|
|
#ifdef CURL_LDAP_WIN
|
|
|
|
ldap_set_option(server, LDAP_OPT_PROTOCOL_VERSION, &ldap_proto);
|
|
|
|
#endif
|
2004-05-03 05:14:12 -04:00
|
|
|
|
2007-08-11 16:57:54 -04:00
|
|
|
rc = ldap_simple_bind_s(server,
|
|
|
|
conn->bits.user_passwd ? conn->user : NULL,
|
|
|
|
conn->bits.user_passwd ? conn->passwd : NULL);
|
2007-11-05 04:45:09 -05:00
|
|
|
if(!ldap_ssl && rc != 0) {
|
2005-10-31 03:55:01 -05:00
|
|
|
ldap_proto = LDAP_VERSION2;
|
2007-08-11 16:57:54 -04:00
|
|
|
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);
|
2005-10-31 03:55:01 -05:00
|
|
|
}
|
2007-11-05 04:45:09 -05:00
|
|
|
if(rc != 0) {
|
2007-08-22 20:10:56 -04:00
|
|
|
failf(data, "LDAP local: ldap_simple_bind_s %s", ldap_err2string(rc));
|
2004-05-03 05:14:12 -04:00
|
|
|
status = CURLE_LDAP_CANNOT_BIND;
|
|
|
|
goto quit;
|
|
|
|
}
|
|
|
|
|
2007-08-11 16:57:54 -04:00
|
|
|
rc = ldap_search_s(server, ludp->lud_dn, ludp->lud_scope,
|
|
|
|
ludp->lud_filter, ludp->lud_attrs, 0, &result);
|
2004-05-03 05:14:12 -04:00
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if(rc != 0 && rc != LDAP_SIZELIMIT_EXCEEDED) {
|
2007-08-11 16:57:54 -04:00
|
|
|
failf(data, "LDAP remote: %s", ldap_err2string(rc));
|
2004-05-03 05:14:12 -04:00
|
|
|
status = CURLE_LDAP_SEARCH_FAILED;
|
|
|
|
goto quit;
|
|
|
|
}
|
|
|
|
|
2007-08-11 16:57:54 -04:00
|
|
|
for(num = 0, entryIterator = ldap_first_entry(server, result);
|
2004-05-03 05:14:12 -04:00
|
|
|
entryIterator;
|
2007-08-11 16:57:54 -04:00
|
|
|
entryIterator = ldap_next_entry(server, entryIterator), num++)
|
2004-05-03 05:14:12 -04:00
|
|
|
{
|
2007-08-11 16:57:54 -04:00
|
|
|
BerElement *ber = NULL;
|
|
|
|
char *attribute; /*! suspicious that this isn't 'const' */
|
|
|
|
char *dn = ldap_get_dn(server, entryIterator);
|
2004-05-03 05:14:12 -04:00
|
|
|
int i;
|
|
|
|
|
2006-08-19 17:18:36 -04:00
|
|
|
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);
|
2004-05-03 05:14:12 -04:00
|
|
|
|
2009-11-02 13:49:56 -05:00
|
|
|
dlsize += strlen(dn)+5;
|
|
|
|
|
2007-08-11 16:57:54 -04:00
|
|
|
for (attribute = ldap_first_attribute(server, entryIterator, &ber);
|
2004-05-03 05:14:12 -04:00
|
|
|
attribute;
|
2007-08-11 16:57:54 -04:00
|
|
|
attribute = ldap_next_attribute(server, entryIterator, ber))
|
2004-05-03 05:14:12 -04:00
|
|
|
{
|
2007-08-11 16:57:54 -04:00
|
|
|
BerValue **vals = ldap_get_values_len(server, entryIterator, attribute);
|
2004-05-03 05:14:12 -04:00
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if(vals != NULL)
|
2004-05-03 05:14:12 -04:00
|
|
|
{
|
|
|
|
for (i = 0; (vals[i] != NULL); i++)
|
|
|
|
{
|
2006-08-19 17:18:36 -04:00
|
|
|
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);
|
2009-11-02 13:49:56 -05:00
|
|
|
dlsize += strlen(attribute)+3;
|
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if((strlen(attribute) > 7) &&
|
2005-10-31 03:55:01 -05:00
|
|
|
(strcmp(";binary",
|
|
|
|
(char *)attribute +
|
|
|
|
(strlen((char *)attribute) - 7)) == 0)) {
|
|
|
|
/* Binary attribute, encode to base64. */
|
2009-11-02 13:49:56 -05:00
|
|
|
val_b64_sz = Curl_base64_encode(data,
|
2007-01-03 18:04:38 -05:00
|
|
|
vals[i]->bv_val,
|
|
|
|
vals[i]->bv_len,
|
2005-10-31 03:55:01 -05:00
|
|
|
&val_b64);
|
2007-11-05 04:45:09 -05:00
|
|
|
if(val_b64_sz > 0) {
|
2006-08-19 17:18:36 -04:00
|
|
|
Curl_client_write(conn, CLIENTWRITE_BODY, val_b64, val_b64_sz);
|
2005-10-31 03:55:01 -05:00
|
|
|
free(val_b64);
|
2009-11-02 13:49:56 -05:00
|
|
|
dlsize += val_b64_sz;
|
2005-10-31 03:55:01 -05:00
|
|
|
}
|
2009-11-02 13:49:56 -05:00
|
|
|
}
|
|
|
|
else {
|
2006-08-19 17:18:36 -04:00
|
|
|
Curl_client_write(conn, CLIENTWRITE_BODY, vals[i]->bv_val,
|
2005-10-31 03:55:01 -05:00
|
|
|
vals[i]->bv_len);
|
2009-11-02 13:49:56 -05:00
|
|
|
dlsize += vals[i]->bv_len;
|
|
|
|
}
|
2006-08-19 17:18:36 -04:00
|
|
|
Curl_client_write(conn, CLIENTWRITE_BODY, (char *)"\n", 0);
|
2009-11-02 13:49:56 -05:00
|
|
|
dlsize++;
|
2004-05-03 05:14:12 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Free memory used to store values */
|
2007-08-11 16:57:54 -04:00
|
|
|
ldap_value_free_len(vals);
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
2006-08-19 17:18:36 -04:00
|
|
|
Curl_client_write(conn, CLIENTWRITE_BODY, (char *)"\n", 1);
|
2009-11-02 13:49:56 -05:00
|
|
|
dlsize++;
|
|
|
|
Curl_pgrsSetDownloadCounter(data, dlsize);
|
2007-08-11 16:57:54 -04:00
|
|
|
ldap_memfree(attribute);
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
2007-08-11 16:57:54 -04:00
|
|
|
ldap_memfree(dn);
|
2007-11-05 04:45:09 -05:00
|
|
|
if(ber)
|
2007-08-11 16:57:54 -04:00
|
|
|
ber_free(ber, 0);
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
2004-05-03 05:14:12 -04:00
|
|
|
|
|
|
|
quit:
|
2007-11-05 04:45:09 -05:00
|
|
|
if(result) {
|
2007-08-16 10:08:47 -04:00
|
|
|
ldap_msgfree(result);
|
|
|
|
LDAP_TRACE (("Received %d entries\n", num));
|
|
|
|
}
|
2007-11-05 04:45:09 -05:00
|
|
|
if(rc == LDAP_SIZELIMIT_EXCEEDED)
|
2007-08-16 10:08:47 -04:00
|
|
|
infof(data, "There are more than %d entries\n", num);
|
2007-11-05 04:45:09 -05:00
|
|
|
if(ludp)
|
2007-08-16 10:08:47 -04:00
|
|
|
ldap_free_urldesc(ludp);
|
2007-11-05 04:45:09 -05:00
|
|
|
if(server)
|
2007-08-16 10:08:47 -04:00
|
|
|
ldap_unbind_s(server);
|
2007-08-20 12:30:41 -04:00
|
|
|
#if defined(HAVE_LDAP_SSL) && defined(CURL_HAS_NOVELL_LDAPSDK)
|
2007-11-05 04:45:09 -05:00
|
|
|
if(ldap_ssl)
|
2007-08-16 10:08:47 -04:00
|
|
|
ldapssl_client_deinit();
|
2007-08-20 12:30:41 -04:00
|
|
|
#endif /* HAVE_LDAP_SSL && CURL_HAS_NOVELL_LDAPSDK */
|
2001-10-25 04:28:29 -04:00
|
|
|
|
|
|
|
/* no data to transfer */
|
2006-09-07 17:49:20 -04:00
|
|
|
Curl_setup_transfer(conn, -1, -1, FALSE, NULL, -1, NULL);
|
2005-02-09 09:28:35 -05:00
|
|
|
conn->bits.close = TRUE;
|
2004-05-03 05:14:12 -04:00
|
|
|
|
1999-12-29 09:20:26 -05:00
|
|
|
return status;
|
|
|
|
}
|
2004-05-03 05:14:12 -04:00
|
|
|
|
|
|
|
#ifdef DEBUG_LDAP
|
|
|
|
static void _ldap_trace (const char *fmt, ...)
|
|
|
|
{
|
|
|
|
static int do_trace = -1;
|
|
|
|
va_list args;
|
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if(do_trace == -1) {
|
2004-05-03 05:14:12 -04:00
|
|
|
const char *env = getenv("CURL_TRACE");
|
|
|
|
do_trace = (env && atoi(env) > 0);
|
|
|
|
}
|
2007-11-05 04:45:09 -05:00
|
|
|
if(!do_trace)
|
2004-05-03 05:14:12 -04:00
|
|
|
return;
|
|
|
|
|
|
|
|
va_start (args, fmt);
|
|
|
|
vfprintf (stderr, fmt, args);
|
|
|
|
va_end (args);
|
|
|
|
}
|
2002-06-11 07:13:01 -04:00
|
|
|
#endif
|
2004-05-03 05:14:12 -04:00
|
|
|
|
2007-08-11 16:57:54 -04:00
|
|
|
#ifndef HAVE_LDAP_URL_PARSE
|
|
|
|
|
2004-05-03 05:14:12 -04:00
|
|
|
/*
|
|
|
|
* Return scope-value for a scope-string.
|
|
|
|
*/
|
|
|
|
static int str2scope (const char *p)
|
|
|
|
{
|
2009-12-30 14:43:12 -05:00
|
|
|
if(strequal(p, "one"))
|
2004-05-03 05:14:12 -04:00
|
|
|
return LDAP_SCOPE_ONELEVEL;
|
2009-12-30 14:43:12 -05:00
|
|
|
if(strequal(p, "onetree"))
|
2004-05-03 05:14:12 -04:00
|
|
|
return LDAP_SCOPE_ONELEVEL;
|
2009-12-30 14:43:12 -05:00
|
|
|
if(strequal(p, "base"))
|
2004-05-03 05:14:12 -04:00
|
|
|
return LDAP_SCOPE_BASE;
|
2009-12-30 14:43:12 -05:00
|
|
|
if(strequal(p, "sub"))
|
2004-05-03 05:14:12 -04:00
|
|
|
return LDAP_SCOPE_SUBTREE;
|
2009-12-30 14:43:12 -05:00
|
|
|
if(strequal( p, "subtree"))
|
2004-05-03 05:14:12 -04:00
|
|
|
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*));
|
2007-11-05 04:45:09 -05:00
|
|
|
if(!res)
|
2004-05-03 05:14:12 -04:00
|
|
|
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
|
|
|
|
*/
|
2006-04-07 17:50:47 -04:00
|
|
|
static bool unescape_elements (void *data, LDAPURLDesc *ludp)
|
2004-05-03 05:14:12 -04:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if(ludp->lud_filter) {
|
2006-04-08 07:01:40 -04:00
|
|
|
ludp->lud_filter = curl_easy_unescape(data, ludp->lud_filter, 0, NULL);
|
2007-11-05 04:45:09 -05:00
|
|
|
if(!ludp->lud_filter)
|
2004-05-03 05:14:12 -04:00
|
|
|
return (FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; ludp->lud_attrs && ludp->lud_attrs[i]; i++) {
|
2006-04-08 07:01:40 -04:00
|
|
|
ludp->lud_attrs[i] = curl_easy_unescape(data, ludp->lud_attrs[i], 0, NULL);
|
2007-11-05 04:45:09 -05:00
|
|
|
if(!ludp->lud_attrs[i])
|
2004-05-03 05:14:12 -04:00
|
|
|
return (FALSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; ludp->lud_exts && ludp->lud_exts[i]; i++) {
|
2006-04-08 07:01:40 -04:00
|
|
|
ludp->lud_exts[i] = curl_easy_unescape(data, ludp->lud_exts[i], 0, NULL);
|
2007-11-05 04:45:09 -05:00
|
|
|
if(!ludp->lud_exts[i])
|
2004-05-03 05:14:12 -04:00
|
|
|
return (FALSE);
|
|
|
|
}
|
2004-05-03 11:01:34 -04:00
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if(ludp->lud_dn) {
|
2004-05-03 11:01:34 -04:00
|
|
|
char *dn = ludp->lud_dn;
|
2006-04-08 07:01:40 -04:00
|
|
|
char *new_dn = curl_easy_unescape(data, dn, 0, NULL);
|
2004-05-03 11:01:34 -04:00
|
|
|
|
|
|
|
free(dn);
|
2005-02-09 09:28:35 -05:00
|
|
|
ludp->lud_dn = new_dn;
|
2007-11-05 04:45:09 -05:00
|
|
|
if(!new_dn)
|
2004-05-03 11:01:34 -04:00
|
|
|
return (FALSE);
|
|
|
|
}
|
2004-05-03 05:14:12 -04:00
|
|
|
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'.
|
2007-11-24 18:18:21 -05:00
|
|
|
* extract the rest from 'conn->data->state.path+1'. All fields are optional.
|
2006-09-08 08:17:58 -04:00
|
|
|
* e.g.
|
|
|
|
* ldap://<hostname>:<port>/?<attributes>?<scope>?<filter>
|
|
|
|
* yields ludp->lud_dn = "".
|
2004-05-03 05:14:12 -04:00
|
|
|
*
|
2009-10-13 10:48:35 -04:00
|
|
|
* Defined in RFC4516 section 2.
|
2004-05-03 05:14:12 -04:00
|
|
|
*/
|
|
|
|
static int _ldap_url_parse2 (const struct connectdata *conn, LDAPURLDesc *ludp)
|
|
|
|
{
|
|
|
|
char *p, *q;
|
|
|
|
int i;
|
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if(!conn->data ||
|
2007-11-24 18:18:21 -05:00
|
|
|
!conn->data->state.path ||
|
|
|
|
conn->data->state.path[0] != '/' ||
|
2009-12-17 15:01:24 -05:00
|
|
|
!checkprefix("LDAP", conn->data->change.url))
|
2007-08-12 18:25:50 -04:00
|
|
|
return LDAP_INVALID_SYNTAX;
|
2004-05-03 05:14:12 -04:00
|
|
|
|
|
|
|
ludp->lud_scope = LDAP_SCOPE_BASE;
|
|
|
|
ludp->lud_port = conn->remote_port;
|
|
|
|
ludp->lud_host = conn->host.name;
|
|
|
|
|
|
|
|
/* parse DN (Distinguished Name).
|
|
|
|
*/
|
2007-11-24 18:18:21 -05:00
|
|
|
ludp->lud_dn = strdup(conn->data->state.path+1);
|
2007-11-05 04:45:09 -05:00
|
|
|
if(!ludp->lud_dn)
|
2007-08-12 18:25:50 -04:00
|
|
|
return LDAP_NO_MEMORY;
|
2004-05-03 05:14:12 -04:00
|
|
|
|
|
|
|
p = strchr(ludp->lud_dn, '?');
|
2005-10-31 03:55:01 -05:00
|
|
|
LDAP_TRACE (("DN '%.*s'\n", p ? (size_t)(p-ludp->lud_dn) :
|
|
|
|
strlen(ludp->lud_dn), ludp->lud_dn));
|
2004-05-03 05:14:12 -04:00
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if(!p)
|
2007-08-12 18:25:50 -04:00
|
|
|
goto success;
|
2004-05-03 05:14:12 -04:00
|
|
|
|
|
|
|
*p++ = '\0';
|
|
|
|
|
|
|
|
/* parse attributes. skip "??".
|
|
|
|
*/
|
|
|
|
q = strchr(p, '?');
|
2007-11-05 04:45:09 -05:00
|
|
|
if(q)
|
2007-08-12 18:25:50 -04:00
|
|
|
*q++ = '\0';
|
2004-05-03 05:14:12 -04:00
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if(*p && *p != '?') {
|
2004-05-03 05:14:12 -04:00
|
|
|
ludp->lud_attrs = split_str(p);
|
2007-11-05 04:45:09 -05:00
|
|
|
if(!ludp->lud_attrs)
|
2007-08-12 18:25:50 -04:00
|
|
|
return LDAP_NO_MEMORY;
|
2004-05-03 05:14:12 -04:00
|
|
|
|
|
|
|
for (i = 0; ludp->lud_attrs[i]; i++)
|
2007-08-12 18:25:50 -04:00
|
|
|
LDAP_TRACE (("attr[%d] '%s'\n", i, ludp->lud_attrs[i]));
|
2004-05-03 05:14:12 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
p = q;
|
2007-11-05 04:45:09 -05:00
|
|
|
if(!p)
|
2007-08-12 18:25:50 -04:00
|
|
|
goto success;
|
2004-05-03 05:14:12 -04:00
|
|
|
|
|
|
|
/* parse scope. skip "??"
|
|
|
|
*/
|
|
|
|
q = strchr(p, '?');
|
2007-11-05 04:45:09 -05:00
|
|
|
if(q)
|
2007-08-12 18:25:50 -04:00
|
|
|
*q++ = '\0';
|
2004-05-03 05:14:12 -04:00
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if(*p && *p != '?') {
|
2004-05-03 05:14:12 -04:00
|
|
|
ludp->lud_scope = str2scope(p);
|
2007-11-05 04:45:09 -05:00
|
|
|
if(ludp->lud_scope == -1)
|
2007-08-12 18:25:50 -04:00
|
|
|
return LDAP_INVALID_SYNTAX;
|
2004-05-03 05:14:12 -04:00
|
|
|
LDAP_TRACE (("scope %d\n", ludp->lud_scope));
|
|
|
|
}
|
|
|
|
|
|
|
|
p = q;
|
2007-11-05 04:45:09 -05:00
|
|
|
if(!p)
|
2007-08-12 18:25:50 -04:00
|
|
|
goto success;
|
2004-05-03 05:14:12 -04:00
|
|
|
|
|
|
|
/* parse filter
|
|
|
|
*/
|
|
|
|
q = strchr(p, '?');
|
2007-11-05 04:45:09 -05:00
|
|
|
if(q)
|
2007-08-12 18:25:50 -04:00
|
|
|
*q++ = '\0';
|
2007-11-05 04:45:09 -05:00
|
|
|
if(!*p)
|
2007-08-12 18:25:50 -04:00
|
|
|
return LDAP_INVALID_SYNTAX;
|
2004-05-03 05:14:12 -04:00
|
|
|
|
|
|
|
ludp->lud_filter = p;
|
|
|
|
LDAP_TRACE (("filter '%s'\n", ludp->lud_filter));
|
|
|
|
|
|
|
|
p = q;
|
2007-11-05 04:45:09 -05:00
|
|
|
if(!p)
|
2007-08-12 18:25:50 -04:00
|
|
|
goto success;
|
2004-05-03 05:14:12 -04:00
|
|
|
|
|
|
|
/* parse extensions
|
|
|
|
*/
|
|
|
|
ludp->lud_exts = split_str(p);
|
2007-11-05 04:45:09 -05:00
|
|
|
if(!ludp->lud_exts)
|
2007-08-12 18:25:50 -04:00
|
|
|
return LDAP_NO_MEMORY;
|
2004-05-03 05:14:12 -04:00
|
|
|
|
|
|
|
for (i = 0; ludp->lud_exts[i]; i++)
|
2007-08-12 18:25:50 -04:00
|
|
|
LDAP_TRACE (("exts[%d] '%s'\n", i, ludp->lud_exts[i]));
|
2004-05-03 05:14:12 -04:00
|
|
|
|
2007-08-12 18:25:50 -04:00
|
|
|
success:
|
2007-11-05 04:45:09 -05:00
|
|
|
if(!unescape_elements(conn->data, ludp))
|
2007-08-12 18:25:50 -04:00
|
|
|
return LDAP_NO_MEMORY;
|
2004-05-03 05:14:12 -04:00
|
|
|
return LDAP_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int _ldap_url_parse (const struct connectdata *conn,
|
|
|
|
LDAPURLDesc **ludpp)
|
|
|
|
{
|
2009-11-18 05:33:54 -05:00
|
|
|
LDAPURLDesc *ludp = calloc(1, sizeof(*ludp));
|
2004-05-03 05:14:12 -04:00
|
|
|
int rc;
|
|
|
|
|
|
|
|
*ludpp = NULL;
|
2007-11-05 04:45:09 -05:00
|
|
|
if(!ludp)
|
2004-05-03 05:14:12 -04:00
|
|
|
return LDAP_NO_MEMORY;
|
|
|
|
|
|
|
|
rc = _ldap_url_parse2 (conn, ludp);
|
2007-11-05 04:45:09 -05:00
|
|
|
if(rc != LDAP_SUCCESS) {
|
2004-05-03 05:14:12 -04:00
|
|
|
_ldap_free_urldesc(ludp);
|
|
|
|
ludp = NULL;
|
|
|
|
}
|
|
|
|
*ludpp = ludp;
|
|
|
|
return (rc);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void _ldap_free_urldesc (LDAPURLDesc *ludp)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if(!ludp)
|
2004-05-03 05:14:12 -04:00
|
|
|
return;
|
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if(ludp->lud_dn)
|
2004-05-03 05:14:12 -04:00
|
|
|
free(ludp->lud_dn);
|
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if(ludp->lud_filter)
|
2004-05-03 05:14:12 -04:00
|
|
|
free(ludp->lud_filter);
|
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if(ludp->lud_attrs) {
|
2004-05-03 05:14:12 -04:00
|
|
|
for (i = 0; ludp->lud_attrs[i]; i++)
|
|
|
|
free(ludp->lud_attrs[i]);
|
|
|
|
free(ludp->lud_attrs);
|
|
|
|
}
|
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if(ludp->lud_exts) {
|
2004-05-03 05:14:12 -04:00
|
|
|
for (i = 0; ludp->lud_exts[i]; i++)
|
|
|
|
free(ludp->lud_exts[i]);
|
|
|
|
free(ludp->lud_exts);
|
|
|
|
}
|
|
|
|
free (ludp);
|
|
|
|
}
|
2007-08-22 14:05:46 -04:00
|
|
|
#endif /* !HAVE_LDAP_URL_PARSE */
|
2010-06-01 11:25:03 -04:00
|
|
|
#endif /* !CURL_DISABLE_LDAP && !USE_OPENLDAP */
|