2002-09-03 07:52:59 -04:00
|
|
|
/***************************************************************************
|
2013-01-03 20:50:28 -05:00
|
|
|
* _ _ ____ _
|
|
|
|
* Project ___| | | | _ \| |
|
|
|
|
* / __| | | | |_) | |
|
|
|
|
* | (__| |_| | _ <| |___
|
|
|
|
* \___|\___/|_| \_\_____|
|
1999-12-29 09:20:26 -05:00
|
|
|
*
|
2019-02-28 05:36:26 -05:00
|
|
|
* Copyright (C) 1998 - 2019, 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
|
2016-02-02 18:19:02 -05:00
|
|
|
* are also available at https://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
|
|
|
|
2013-01-06 13:06:49 -05:00
|
|
|
#include "curl_setup.h"
|
2000-08-24 10:26:33 -04:00
|
|
|
|
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
|
2013-01-03 20:50:28 -05:00
|
|
|
* gets compiled is the code from openldap.c, otherwise the code that gets
|
|
|
|
* compiled is the code from ldap.c.
|
2010-06-01 11:25:03 -04:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2015-01-18 15:25:37 -05:00
|
|
|
#ifdef USE_WIN32_LDAP /* 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
|
2011-04-20 09:17:42 -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
|
|
|
|
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "urldata.h"
|
1999-12-29 09:20:26 -05:00
|
|
|
#include <curl/curl.h>
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "sendf.h"
|
|
|
|
#include "escape.h"
|
|
|
|
#include "progress.h"
|
|
|
|
#include "transfer.h"
|
2016-10-31 04:30:36 -04:00
|
|
|
#include "strcase.h"
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "strtok.h"
|
2007-08-11 16:57:54 -04:00
|
|
|
#include "curl_ldap.h"
|
2015-01-03 14:59:12 -05:00
|
|
|
#include "curl_multibyte.h"
|
2008-08-16 20:25:38 -04:00
|
|
|
#include "curl_base64.h"
|
2014-05-21 19:09:11 -04:00
|
|
|
#include "connect.h"
|
2016-04-29 09:46:40 -04:00
|
|
|
/* The last 3 #include files should be in this order */
|
2015-03-03 06:36:18 -05:00
|
|
|
#include "curl_printf.h"
|
2015-03-24 18:12:03 -04:00
|
|
|
#include "curl_memory.h"
|
2013-01-03 20:50:28 -05:00
|
|
|
#include "memdebug.h"
|
2004-05-03 05:14:12 -04:00
|
|
|
|
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 {
|
2013-09-05 17:51:53 -04:00
|
|
|
char *lud_host;
|
|
|
|
int lud_port;
|
2015-01-18 15:25:37 -05:00
|
|
|
#if defined(USE_WIN32_LDAP)
|
2015-01-03 15:36:10 -05:00
|
|
|
TCHAR *lud_dn;
|
2015-01-03 15:49:11 -05:00
|
|
|
TCHAR **lud_attrs;
|
2015-01-03 15:36:10 -05:00
|
|
|
#else
|
2013-09-05 17:51:53 -04:00
|
|
|
char *lud_dn;
|
|
|
|
char **lud_attrs;
|
2015-01-03 15:49:11 -05:00
|
|
|
#endif
|
2013-09-05 17:51:53 -04:00
|
|
|
int lud_scope;
|
2015-01-18 15:25:37 -05:00
|
|
|
#if defined(USE_WIN32_LDAP)
|
2015-01-03 15:58:29 -05:00
|
|
|
TCHAR *lud_filter;
|
|
|
|
#else
|
2013-09-05 17:51:53 -04:00
|
|
|
char *lud_filter;
|
2015-01-04 11:11:08 -05:00
|
|
|
#endif
|
2013-09-05 17:51:53 -04:00
|
|
|
char **lud_exts;
|
2013-09-10 14:30:07 -04:00
|
|
|
size_t lud_attrs_dups; /* how many were dup'ed, this field is not in the
|
|
|
|
"real" struct so can only be used in code
|
|
|
|
without HAVE_LDAP_URL_PARSE defined */
|
2007-08-13 09:03:08 -04:00
|
|
|
} CURL_LDAPURLDesc;
|
|
|
|
|
|
|
|
#undef LDAPURLDesc
|
|
|
|
#define LDAPURLDesc CURL_LDAPURLDesc
|
2003-09-01 04:23:31 -04:00
|
|
|
|
2016-12-13 17:34:59 -05:00
|
|
|
static int _ldap_url_parse(const struct connectdata *conn,
|
|
|
|
LDAPURLDesc **ludp);
|
|
|
|
static void _ldap_free_urldesc(LDAPURLDesc *ludp);
|
2004-05-03 05:14:12 -04:00
|
|
|
|
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 { \
|
2016-12-13 17:34:59 -05:00
|
|
|
_ldap_trace("%u: ", __LINE__); \
|
2004-05-03 05:14:12 -04:00
|
|
|
_ldap_trace x; \
|
2019-11-30 03:29:36 -05:00
|
|
|
} while(0)
|
2004-05-03 05:14:12 -04:00
|
|
|
|
2016-12-13 17:34:59 -05:00
|
|
|
static void _ldap_trace(const char *fmt, ...);
|
2004-05-03 05:14:12 -04:00
|
|
|
#else
|
2011-09-03 10:06:10 -04:00
|
|
|
#define LDAP_TRACE(x) Curl_nop_stmt
|
2004-05-03 05:14:12 -04:00
|
|
|
#endif
|
|
|
|
|
2019-08-27 14:20:20 -04:00
|
|
|
#if defined(USE_WIN32_LDAP) && defined(ldap_err2string)
|
|
|
|
/* Use ansi error strings in UNICODE builds */
|
|
|
|
#undef ldap_err2string
|
|
|
|
#define ldap_err2string ldap_err2stringA
|
|
|
|
#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 */
|
2011-10-21 17:36:54 -04:00
|
|
|
ZERO_NULL, /* domore_getsock */
|
2008-12-19 16:14:52 -05:00
|
|
|
ZERO_NULL, /* perform_getsock */
|
2007-10-17 12:58:32 -04:00
|
|
|
ZERO_NULL, /* disconnect */
|
2011-05-06 16:48:24 -04:00
|
|
|
ZERO_NULL, /* readwrite */
|
2017-05-31 07:09:56 -04:00
|
|
|
ZERO_NULL, /* connection_check */
|
2007-10-12 09:36:37 -04:00
|
|
|
PORT_LDAP, /* defport */
|
2011-03-15 04:13:11 -04:00
|
|
|
CURLPROTO_LDAP, /* protocol */
|
2011-03-15 11:44:50 -04:00
|
|
|
PROTOPT_NONE /* flags */
|
2007-10-12 09:36:37 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#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 */
|
2011-10-21 17:36:54 -04:00
|
|
|
ZERO_NULL, /* domore_getsock */
|
2008-12-19 16:14:52 -05:00
|
|
|
ZERO_NULL, /* perform_getsock */
|
2007-10-17 12:58:32 -04:00
|
|
|
ZERO_NULL, /* disconnect */
|
2011-05-06 16:48:24 -04:00
|
|
|
ZERO_NULL, /* readwrite */
|
2017-05-31 07:09:56 -04:00
|
|
|
ZERO_NULL, /* connection_check */
|
2007-10-12 09:36:37 -04:00
|
|
|
PORT_LDAPS, /* defport */
|
2014-04-20 13:37:54 -04:00
|
|
|
CURLPROTO_LDAPS, /* protocol */
|
2011-03-15 04:13:11 -04:00
|
|
|
PROTOPT_SSL /* flags */
|
2007-10-12 09:36:37 -04:00
|
|
|
};
|
|
|
|
#endif
|
|
|
|
|
2017-05-23 15:45:39 -04:00
|
|
|
#if defined(USE_WIN32_LDAP)
|
|
|
|
|
|
|
|
#if defined(USE_WINDOWS_SSPI)
|
|
|
|
static int ldap_win_bind_auth(LDAP *server, const char *user,
|
|
|
|
const char *passwd, unsigned long authflags)
|
|
|
|
{
|
|
|
|
ULONG method = 0;
|
2017-10-15 11:59:43 -04:00
|
|
|
SEC_WINNT_AUTH_IDENTITY cred;
|
2017-05-23 15:45:39 -04:00
|
|
|
int rc = LDAP_AUTH_METHOD_NOT_SUPPORTED;
|
|
|
|
|
2017-10-15 11:59:43 -04:00
|
|
|
memset(&cred, 0, sizeof(cred));
|
|
|
|
|
2017-05-23 15:45:39 -04:00
|
|
|
#if defined(USE_SPNEGO)
|
|
|
|
if(authflags & CURLAUTH_NEGOTIATE) {
|
|
|
|
method = LDAP_AUTH_NEGOTIATE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
#if defined(USE_NTLM)
|
|
|
|
if(authflags & CURLAUTH_NTLM) {
|
|
|
|
method = LDAP_AUTH_NTLM;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
#if !defined(CURL_DISABLE_CRYPTO_AUTH)
|
|
|
|
if(authflags & CURLAUTH_DIGEST) {
|
|
|
|
method = LDAP_AUTH_DIGEST;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
{
|
|
|
|
/* required anyway if one of upper preprocessor definitions enabled */
|
|
|
|
}
|
|
|
|
|
|
|
|
if(method && user && passwd) {
|
|
|
|
rc = Curl_create_sspi_identity(user, passwd, &cred);
|
|
|
|
if(!rc) {
|
|
|
|
rc = ldap_bind_s(server, NULL, (TCHAR *)&cred, method);
|
|
|
|
Curl_sspi_free_identity(&cred);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
/* proceed with current user credentials */
|
|
|
|
method = LDAP_AUTH_NEGOTIATE;
|
|
|
|
rc = ldap_bind_s(server, NULL, NULL, method);
|
|
|
|
}
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
#endif /* #if defined(USE_WINDOWS_SSPI) */
|
|
|
|
|
|
|
|
static int ldap_win_bind(struct connectdata *conn, LDAP *server,
|
|
|
|
const char *user, const char *passwd)
|
|
|
|
{
|
|
|
|
int rc = LDAP_INVALID_CREDENTIALS;
|
|
|
|
|
|
|
|
PTCHAR inuser = NULL;
|
|
|
|
PTCHAR inpass = NULL;
|
|
|
|
|
|
|
|
if(user && passwd && (conn->data->set.httpauth & CURLAUTH_BASIC)) {
|
2017-05-23 17:14:13 -04:00
|
|
|
inuser = Curl_convert_UTF8_to_tchar((char *) user);
|
|
|
|
inpass = Curl_convert_UTF8_to_tchar((char *) passwd);
|
2017-05-23 15:45:39 -04:00
|
|
|
|
2017-07-08 11:33:58 -04:00
|
|
|
rc = ldap_simple_bind_s(server, inuser, inpass);
|
2017-05-23 15:45:39 -04:00
|
|
|
|
|
|
|
Curl_unicodefree(inuser);
|
|
|
|
Curl_unicodefree(inpass);
|
|
|
|
}
|
|
|
|
#if defined(USE_WINDOWS_SSPI)
|
|
|
|
else {
|
|
|
|
rc = ldap_win_bind_auth(server, user, passwd, conn->data->set.httpauth);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return rc;
|
|
|
|
}
|
|
|
|
#endif /* #if defined(USE_WIN32_LDAP) */
|
2007-10-12 09:36:37 -04:00
|
|
|
|
|
|
|
static CURLcode Curl_ldap(struct connectdata *conn, bool *done)
|
1999-12-29 09:20:26 -05:00
|
|
|
{
|
2014-12-09 18:36:31 -05:00
|
|
|
CURLcode result = 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;
|
2014-12-09 18:36:31 -05:00
|
|
|
LDAPMessage *ldapmsg = NULL;
|
2007-08-11 16:57:54 -04:00
|
|
|
LDAPMessage *entryIterator;
|
2004-05-06 03:22:32 -04:00
|
|
|
int num = 0;
|
2017-09-09 17:09:06 -04:00
|
|
|
struct Curl_easy *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;
|
2011-08-24 02:07:36 -04:00
|
|
|
char *val_b64 = NULL;
|
|
|
|
size_t val_b64_sz = 0;
|
|
|
|
curl_off_t dlsize = 0;
|
2007-08-20 12:30:41 -04:00
|
|
|
#ifdef LDAP_OPT_NETWORK_TIMEOUT
|
2015-03-17 08:41:49 -04:00
|
|
|
struct timeval ldap_timeout = {10, 0}; /* 10 sec connection/search timeout */
|
2007-08-20 12:30:41 -04:00
|
|
|
#endif
|
2015-01-18 15:25:37 -05:00
|
|
|
#if defined(USE_WIN32_LDAP)
|
2015-01-03 14:59:12 -05:00
|
|
|
TCHAR *host = NULL;
|
|
|
|
#else
|
|
|
|
char *host = NULL;
|
2017-05-23 15:45:39 -04:00
|
|
|
#endif
|
2015-01-03 15:16:26 -05:00
|
|
|
char *user = NULL;
|
|
|
|
char *passwd = NULL;
|
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));
|
2014-12-09 18:36:31 -05:00
|
|
|
result = CURLE_LDAP_INVALID_URL;
|
2007-08-16 10:08:47 -04:00
|
|
|
goto quit;
|
|
|
|
}
|
|
|
|
|
2016-04-03 14:28:34 -04:00
|
|
|
/* Get the URL scheme (either ldap or ldaps) */
|
2011-05-05 09:49:43 -04:00
|
|
|
if(conn->given->flags & PROTOPT_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");
|
|
|
|
|
2015-01-18 15:25:37 -05:00
|
|
|
#if defined(USE_WIN32_LDAP)
|
2015-01-03 14:59:12 -05:00
|
|
|
host = Curl_convert_UTF8_to_tchar(conn->host.name);
|
|
|
|
if(!host) {
|
|
|
|
result = CURLE_OUT_OF_MEMORY;
|
|
|
|
|
|
|
|
goto quit;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
host = conn->host.name;
|
2017-05-23 15:45:39 -04:00
|
|
|
#endif
|
2015-01-03 15:16:26 -05:00
|
|
|
|
|
|
|
if(conn->bits.user_passwd) {
|
|
|
|
user = conn->user;
|
|
|
|
passwd = conn->passwd;
|
|
|
|
}
|
2015-01-03 14:59:12 -05:00
|
|
|
|
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
|
2015-01-18 15:25:37 -05:00
|
|
|
#ifdef USE_WIN32_LDAP
|
2011-04-19 09:54:13 -04:00
|
|
|
/* Win32 LDAP SDK doesn't support insecure mode without CA! */
|
2015-01-03 14:59:12 -05:00
|
|
|
server = ldap_sslinit(host, (int)conn->port, 1);
|
2007-08-16 10:08:47 -04:00
|
|
|
ldap_set_option(server, LDAP_OPT_SSL, LDAP_OPT_ON);
|
|
|
|
#else
|
2007-08-20 19:31:26 -04:00
|
|
|
int ldap_option;
|
2016-11-23 01:53:24 -05:00
|
|
|
char *ldap_ca = conn->ssl_config.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));
|
2014-12-09 18:36:31 -05:00
|
|
|
result = CURLE_SSL_CERTPROBLEM;
|
2007-08-16 10:08:47 -04:00
|
|
|
goto quit;
|
|
|
|
}
|
2016-11-16 12:49:15 -05:00
|
|
|
if(conn->ssl_config.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;
|
2016-11-16 12:49:15 -05:00
|
|
|
if((data->set.ssl.cert_type) &&
|
|
|
|
(strcasecompare(data->set.ssl.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"));
|
2014-12-09 18:36:31 -05:00
|
|
|
result = CURLE_SSL_CERTPROBLEM;
|
2007-08-22 20:10:56 -04:00
|
|
|
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));
|
2014-12-09 18:36:31 -05:00
|
|
|
result = CURLE_SSL_CERTPROBLEM;
|
2007-08-20 12:30:41 -04:00
|
|
|
goto quit;
|
|
|
|
}
|
|
|
|
ldap_option = LDAPSSL_VERIFY_SERVER;
|
|
|
|
}
|
2011-04-20 09:17:42 -04:00
|
|
|
else
|
|
|
|
ldap_option = LDAPSSL_VERIFY_NONE;
|
2007-08-20 12:30:41 -04:00
|
|
|
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));
|
2014-12-09 18:36:31 -05:00
|
|
|
result = CURLE_SSL_CERTPROBLEM;
|
2007-08-16 10:08:47 -04:00
|
|
|
goto quit;
|
|
|
|
}
|
2015-01-03 14:59:12 -05:00
|
|
|
server = ldapssl_init(host, (int)conn->port, 1);
|
2007-11-05 04:45:09 -05:00
|
|
|
if(server == NULL) {
|
2013-07-24 10:43:13 -04:00
|
|
|
failf(data, "LDAP local: Cannot connect to %s:%ld",
|
2015-01-03 14:45:30 -05:00
|
|
|
conn->host.dispname, conn->port);
|
2014-12-09 18:36:31 -05:00
|
|
|
result = CURLE_COULDNT_CONNECT;
|
2007-08-20 12:30:41 -04:00
|
|
|
goto quit;
|
|
|
|
}
|
|
|
|
#elif defined(LDAP_OPT_X_TLS)
|
2016-11-16 12:49:15 -05:00
|
|
|
if(conn->ssl_config.verifypeer) {
|
2007-08-20 12:30:41 -04:00
|
|
|
/* OpenLDAP SDK supports BASE64 files. */
|
2016-11-16 12:49:15 -05:00
|
|
|
if((data->set.ssl.cert_type) &&
|
|
|
|
(!strcasecompare(data->set.ssl.cert_type, "PEM"))) {
|
2011-04-20 09:17:42 -04:00
|
|
|
failf(data, "LDAP local: ERROR OpenLDAP only supports PEM cert-type!");
|
2014-12-09 18:36:31 -05:00
|
|
|
result = CURLE_SSL_CERTPROBLEM;
|
2007-08-25 08:10:30 -04:00
|
|
|
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!");
|
2014-12-09 18:36:31 -05:00
|
|
|
result = CURLE_SSL_CERTPROBLEM;
|
2007-08-22 20:10:56 -04:00
|
|
|
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));
|
2014-12-09 18:36:31 -05:00
|
|
|
result = CURLE_SSL_CERTPROBLEM;
|
2007-08-20 12:30:41 -04:00
|
|
|
goto quit;
|
|
|
|
}
|
|
|
|
ldap_option = LDAP_OPT_X_TLS_DEMAND;
|
|
|
|
}
|
2011-04-20 09:17:42 -04:00
|
|
|
else
|
|
|
|
ldap_option = LDAP_OPT_X_TLS_NEVER;
|
|
|
|
|
2007-08-20 12:30:41 -04:00
|
|
|
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));
|
2014-12-09 18:36:31 -05:00
|
|
|
result = CURLE_SSL_CERTPROBLEM;
|
2007-08-20 12:30:41 -04:00
|
|
|
goto quit;
|
|
|
|
}
|
2015-01-03 14:59:12 -05:00
|
|
|
server = ldap_init(host, (int)conn->port);
|
2007-11-05 04:45:09 -05:00
|
|
|
if(server == NULL) {
|
2013-07-24 10:43:13 -04:00
|
|
|
failf(data, "LDAP local: Cannot connect to %s:%ld",
|
2015-01-03 14:45:30 -05:00
|
|
|
conn->host.dispname, conn->port);
|
2014-12-09 18:36:31 -05:00
|
|
|
result = CURLE_COULDNT_CONNECT;
|
2007-08-20 12:30:41 -04:00
|
|
|
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));
|
2014-12-09 18:36:31 -05:00
|
|
|
result = CURLE_SSL_CERTPROBLEM;
|
2007-08-20 12:30:41 -04:00
|
|
|
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));
|
2014-12-09 18:36:31 -05:00
|
|
|
result = CURLE_SSL_CERTPROBLEM;
|
2007-08-20 12:30:41 -04:00
|
|
|
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");
|
2014-12-09 18:36:31 -05:00
|
|
|
result = CURLE_SSL_CERTPROBLEM;
|
2007-08-20 12:30:41 -04:00
|
|
|
goto quit;
|
|
|
|
#endif
|
2007-08-16 10:08:47 -04:00
|
|
|
#endif
|
|
|
|
#endif /* CURL_LDAP_USE_SSL */
|
2011-04-20 09:17:42 -04:00
|
|
|
}
|
|
|
|
else {
|
2015-01-03 14:59:12 -05:00
|
|
|
server = ldap_init(host, (int)conn->port);
|
2007-11-05 04:45:09 -05:00
|
|
|
if(server == NULL) {
|
2013-07-24 10:43:13 -04:00
|
|
|
failf(data, "LDAP local: Cannot connect to %s:%ld",
|
2015-01-03 14:45:30 -05:00
|
|
|
conn->host.dispname, conn->port);
|
2014-12-09 18:36:31 -05:00
|
|
|
result = CURLE_COULDNT_CONNECT;
|
2007-08-20 12:30:41 -04:00
|
|
|
goto quit;
|
|
|
|
}
|
2004-02-06 02:28:49 -05:00
|
|
|
}
|
2015-01-18 15:25:37 -05:00
|
|
|
#ifdef USE_WIN32_LDAP
|
2007-09-15 16:03:03 -04:00
|
|
|
ldap_set_option(server, LDAP_OPT_PROTOCOL_VERSION, &ldap_proto);
|
|
|
|
#endif
|
2004-05-03 05:14:12 -04:00
|
|
|
|
2017-05-23 15:45:39 -04:00
|
|
|
#ifdef USE_WIN32_LDAP
|
|
|
|
rc = ldap_win_bind(conn, server, user, passwd);
|
|
|
|
#else
|
2015-01-03 15:16:26 -05:00
|
|
|
rc = ldap_simple_bind_s(server, user, passwd);
|
2017-05-23 15:45:39 -04:00
|
|
|
#endif
|
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);
|
2017-05-23 15:45:39 -04:00
|
|
|
#ifdef USE_WIN32_LDAP
|
|
|
|
rc = ldap_win_bind(conn, server, user, passwd);
|
|
|
|
#else
|
2015-01-03 15:16:26 -05:00
|
|
|
rc = ldap_simple_bind_s(server, user, passwd);
|
2017-05-23 15:45:39 -04:00
|
|
|
#endif
|
2005-10-31 03:55:01 -05:00
|
|
|
}
|
2007-11-05 04:45:09 -05:00
|
|
|
if(rc != 0) {
|
2018-10-09 11:05:35 -04:00
|
|
|
#ifdef USE_WIN32_LDAP
|
|
|
|
failf(data, "LDAP local: bind via ldap_win_bind %s",
|
|
|
|
ldap_err2string(rc));
|
|
|
|
#else
|
|
|
|
failf(data, "LDAP local: bind via ldap_simple_bind_s %s",
|
|
|
|
ldap_err2string(rc));
|
|
|
|
#endif
|
2014-12-09 18:36:31 -05:00
|
|
|
result = CURLE_LDAP_CANNOT_BIND;
|
2011-04-20 09:17:42 -04:00
|
|
|
goto quit;
|
2004-05-03 05:14:12 -04:00
|
|
|
}
|
|
|
|
|
2007-08-11 16:57:54 -04:00
|
|
|
rc = ldap_search_s(server, ludp->lud_dn, ludp->lud_scope,
|
2014-12-09 18:36:31 -05:00
|
|
|
ludp->lud_filter, ludp->lud_attrs, 0, &ldapmsg);
|
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));
|
2014-12-09 18:36:31 -05:00
|
|
|
result = CURLE_LDAP_SEARCH_FAILED;
|
2004-05-03 05:14:12 -04:00
|
|
|
goto quit;
|
|
|
|
}
|
|
|
|
|
2014-12-09 18:36:31 -05:00
|
|
|
for(num = 0, entryIterator = ldap_first_entry(server, ldapmsg);
|
2004-05-03 05:14:12 -04:00
|
|
|
entryIterator;
|
2011-04-20 09:17:42 -04:00
|
|
|
entryIterator = ldap_next_entry(server, entryIterator), num++) {
|
2007-08-11 16:57:54 -04:00
|
|
|
BerElement *ber = NULL;
|
2015-01-18 15:25:37 -05:00
|
|
|
#if defined(USE_WIN32_LDAP)
|
2015-01-03 16:19:11 -05:00
|
|
|
TCHAR *attribute;
|
|
|
|
#else
|
2007-08-11 16:57:54 -04:00
|
|
|
char *attribute; /*! suspicious that this isn't 'const' */
|
2015-01-03 16:19:11 -05:00
|
|
|
#endif
|
2004-05-03 05:14:12 -04:00
|
|
|
int i;
|
|
|
|
|
2015-01-03 12:05:50 -05:00
|
|
|
/* Get the DN and write it to the client */
|
|
|
|
{
|
2015-01-07 14:19:20 -05:00
|
|
|
char *name;
|
|
|
|
size_t name_len;
|
2015-01-18 15:25:37 -05:00
|
|
|
#if defined(USE_WIN32_LDAP)
|
2015-01-03 16:12:56 -05:00
|
|
|
TCHAR *dn = ldap_get_dn(server, entryIterator);
|
2015-01-07 14:19:20 -05:00
|
|
|
name = Curl_convert_tchar_to_UTF8(dn);
|
|
|
|
if(!name) {
|
|
|
|
ldap_memfree(dn);
|
|
|
|
|
|
|
|
result = CURLE_OUT_OF_MEMORY;
|
|
|
|
|
|
|
|
goto quit;
|
|
|
|
}
|
2015-01-03 16:12:56 -05:00
|
|
|
#else
|
2015-01-07 14:19:20 -05:00
|
|
|
char *dn = name = ldap_get_dn(server, entryIterator);
|
2015-01-03 16:12:56 -05:00
|
|
|
#endif
|
2015-01-07 14:19:20 -05:00
|
|
|
name_len = strlen(name);
|
2014-12-09 18:41:32 -05:00
|
|
|
|
2015-01-03 12:05:50 -05:00
|
|
|
result = Curl_client_write(conn, CLIENTWRITE_BODY, (char *)"DN: ", 4);
|
|
|
|
if(result) {
|
2015-01-18 15:25:37 -05:00
|
|
|
#if defined(USE_WIN32_LDAP)
|
2015-01-07 14:19:20 -05:00
|
|
|
Curl_unicodefree(name);
|
|
|
|
#endif
|
2015-01-03 12:05:50 -05:00
|
|
|
ldap_memfree(dn);
|
2014-12-09 18:41:32 -05:00
|
|
|
|
2015-01-03 12:05:50 -05:00
|
|
|
goto quit;
|
|
|
|
}
|
2004-05-03 05:14:12 -04:00
|
|
|
|
2015-01-07 14:19:20 -05:00
|
|
|
result = Curl_client_write(conn, CLIENTWRITE_BODY, (char *) name,
|
|
|
|
name_len);
|
2015-01-03 12:05:50 -05:00
|
|
|
if(result) {
|
2015-01-18 15:25:37 -05:00
|
|
|
#if defined(USE_WIN32_LDAP)
|
2015-01-07 14:19:20 -05:00
|
|
|
Curl_unicodefree(name);
|
|
|
|
#endif
|
2015-01-03 12:05:50 -05:00
|
|
|
ldap_memfree(dn);
|
|
|
|
|
|
|
|
goto quit;
|
|
|
|
}
|
|
|
|
|
|
|
|
result = Curl_client_write(conn, CLIENTWRITE_BODY, (char *)"\n", 1);
|
|
|
|
if(result) {
|
2015-01-18 15:25:37 -05:00
|
|
|
#if defined(USE_WIN32_LDAP)
|
2015-01-07 14:19:20 -05:00
|
|
|
Curl_unicodefree(name);
|
|
|
|
#endif
|
2015-01-03 12:05:50 -05:00
|
|
|
ldap_memfree(dn);
|
|
|
|
|
|
|
|
goto quit;
|
|
|
|
}
|
|
|
|
|
2015-01-07 14:19:20 -05:00
|
|
|
dlsize += name_len + 5;
|
2015-01-03 12:05:50 -05:00
|
|
|
|
2015-01-18 15:25:37 -05:00
|
|
|
#if defined(USE_WIN32_LDAP)
|
2015-01-07 14:19:20 -05:00
|
|
|
Curl_unicodefree(name);
|
|
|
|
#endif
|
2015-01-03 12:05:50 -05:00
|
|
|
ldap_memfree(dn);
|
|
|
|
}
|
2009-11-02 13:49:56 -05:00
|
|
|
|
2015-01-03 12:25:11 -05:00
|
|
|
/* Get the attributes and write them to the client */
|
2011-04-20 09:17:42 -04:00
|
|
|
for(attribute = ldap_first_attribute(server, entryIterator, &ber);
|
|
|
|
attribute;
|
|
|
|
attribute = ldap_next_attribute(server, entryIterator, ber)) {
|
2015-01-07 14:45:24 -05:00
|
|
|
BerValue **vals;
|
|
|
|
size_t attr_len;
|
2015-01-18 15:25:37 -05:00
|
|
|
#if defined(USE_WIN32_LDAP)
|
2015-01-07 14:45:24 -05:00
|
|
|
char *attr = Curl_convert_tchar_to_UTF8(attribute);
|
|
|
|
if(!attr) {
|
|
|
|
if(ber)
|
|
|
|
ber_free(ber, 0);
|
|
|
|
|
|
|
|
result = CURLE_OUT_OF_MEMORY;
|
|
|
|
|
|
|
|
goto quit;
|
|
|
|
}
|
2015-01-03 16:19:11 -05:00
|
|
|
#else
|
2015-01-07 14:45:24 -05:00
|
|
|
char *attr = attribute;
|
2015-01-03 16:19:11 -05:00
|
|
|
#endif
|
2015-01-07 14:45:24 -05:00
|
|
|
attr_len = strlen(attr);
|
2004-05-03 05:14:12 -04:00
|
|
|
|
2015-01-07 14:45:24 -05:00
|
|
|
vals = ldap_get_values_len(server, entryIterator, attribute);
|
2011-04-20 09:17:42 -04:00
|
|
|
if(vals != NULL) {
|
|
|
|
for(i = 0; (vals[i] != NULL); i++) {
|
2014-12-09 18:41:32 -05:00
|
|
|
result = Curl_client_write(conn, CLIENTWRITE_BODY, (char *)"\t", 1);
|
2015-01-03 12:25:11 -05:00
|
|
|
if(result) {
|
|
|
|
ldap_value_free_len(vals);
|
2015-01-18 15:25:37 -05:00
|
|
|
#if defined(USE_WIN32_LDAP)
|
2015-01-07 14:45:24 -05:00
|
|
|
Curl_unicodefree(attr);
|
|
|
|
#endif
|
2015-01-03 12:25:11 -05:00
|
|
|
ldap_memfree(attribute);
|
|
|
|
if(ber)
|
|
|
|
ber_free(ber, 0);
|
|
|
|
|
2014-12-09 18:41:32 -05:00
|
|
|
goto quit;
|
2015-01-03 12:25:11 -05:00
|
|
|
}
|
2014-12-09 18:41:32 -05:00
|
|
|
|
|
|
|
result = Curl_client_write(conn, CLIENTWRITE_BODY,
|
2015-01-07 14:45:24 -05:00
|
|
|
(char *) attr, attr_len);
|
2015-01-03 12:25:11 -05:00
|
|
|
if(result) {
|
|
|
|
ldap_value_free_len(vals);
|
2015-01-18 15:25:37 -05:00
|
|
|
#if defined(USE_WIN32_LDAP)
|
2015-01-07 14:45:24 -05:00
|
|
|
Curl_unicodefree(attr);
|
|
|
|
#endif
|
2015-01-03 12:25:11 -05:00
|
|
|
ldap_memfree(attribute);
|
|
|
|
if(ber)
|
|
|
|
ber_free(ber, 0);
|
|
|
|
|
2014-12-09 18:41:32 -05:00
|
|
|
goto quit;
|
2015-01-03 12:25:11 -05:00
|
|
|
}
|
2014-12-09 18:41:32 -05:00
|
|
|
|
|
|
|
result = Curl_client_write(conn, CLIENTWRITE_BODY, (char *)": ", 2);
|
2015-01-03 12:25:11 -05:00
|
|
|
if(result) {
|
|
|
|
ldap_value_free_len(vals);
|
2015-01-18 15:25:37 -05:00
|
|
|
#if defined(USE_WIN32_LDAP)
|
2015-01-07 14:45:24 -05:00
|
|
|
Curl_unicodefree(attr);
|
|
|
|
#endif
|
2015-01-03 12:25:11 -05:00
|
|
|
ldap_memfree(attribute);
|
|
|
|
if(ber)
|
|
|
|
ber_free(ber, 0);
|
|
|
|
|
2014-12-09 18:41:32 -05:00
|
|
|
goto quit;
|
2015-01-03 12:25:11 -05:00
|
|
|
}
|
|
|
|
|
2015-01-03 12:39:23 -05:00
|
|
|
dlsize += attr_len + 3;
|
2009-11-02 13:49:56 -05:00
|
|
|
|
2015-01-03 12:39:23 -05:00
|
|
|
if((attr_len > 7) &&
|
2015-01-07 14:45:24 -05:00
|
|
|
(strcmp(";binary", (char *) attr + (attr_len - 7)) == 0)) {
|
2005-10-31 03:55:01 -05:00
|
|
|
/* Binary attribute, encode to base64. */
|
2015-01-03 12:45:51 -05:00
|
|
|
result = Curl_base64_encode(data,
|
|
|
|
vals[i]->bv_val,
|
|
|
|
vals[i]->bv_len,
|
|
|
|
&val_b64,
|
|
|
|
&val_b64_sz);
|
|
|
|
if(result) {
|
2011-08-24 02:07:36 -04:00
|
|
|
ldap_value_free_len(vals);
|
2015-01-18 15:25:37 -05:00
|
|
|
#if defined(USE_WIN32_LDAP)
|
2015-01-07 14:45:24 -05:00
|
|
|
Curl_unicodefree(attr);
|
|
|
|
#endif
|
2011-08-24 02:07:36 -04:00
|
|
|
ldap_memfree(attribute);
|
|
|
|
if(ber)
|
|
|
|
ber_free(ber, 0);
|
2015-01-03 12:45:51 -05:00
|
|
|
|
2011-08-24 02:07:36 -04:00
|
|
|
goto quit;
|
|
|
|
}
|
2015-01-03 12:25:11 -05:00
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if(val_b64_sz > 0) {
|
2014-12-09 18:41:32 -05:00
|
|
|
result = Curl_client_write(conn, CLIENTWRITE_BODY, val_b64,
|
|
|
|
val_b64_sz);
|
2005-10-31 03:55:01 -05:00
|
|
|
free(val_b64);
|
2015-01-03 12:25:11 -05:00
|
|
|
if(result) {
|
|
|
|
ldap_value_free_len(vals);
|
2015-01-18 15:25:37 -05:00
|
|
|
#if defined(USE_WIN32_LDAP)
|
2015-01-07 14:45:24 -05:00
|
|
|
Curl_unicodefree(attr);
|
|
|
|
#endif
|
2015-01-03 12:25:11 -05:00
|
|
|
ldap_memfree(attribute);
|
|
|
|
if(ber)
|
|
|
|
ber_free(ber, 0);
|
|
|
|
|
2014-12-09 18:41:32 -05:00
|
|
|
goto quit;
|
2015-01-03 12:25:11 -05:00
|
|
|
}
|
|
|
|
|
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 {
|
2014-12-09 18:41:32 -05:00
|
|
|
result = Curl_client_write(conn, CLIENTWRITE_BODY, vals[i]->bv_val,
|
|
|
|
vals[i]->bv_len);
|
2015-01-03 12:25:11 -05:00
|
|
|
if(result) {
|
|
|
|
ldap_value_free_len(vals);
|
2015-01-18 15:25:37 -05:00
|
|
|
#if defined(USE_WIN32_LDAP)
|
2015-01-07 14:45:24 -05:00
|
|
|
Curl_unicodefree(attr);
|
|
|
|
#endif
|
2015-01-03 12:25:11 -05:00
|
|
|
ldap_memfree(attribute);
|
|
|
|
if(ber)
|
|
|
|
ber_free(ber, 0);
|
|
|
|
|
2014-12-09 18:41:32 -05:00
|
|
|
goto quit;
|
2015-01-03 12:25:11 -05:00
|
|
|
}
|
|
|
|
|
2009-11-02 13:49:56 -05:00
|
|
|
dlsize += vals[i]->bv_len;
|
|
|
|
}
|
2015-01-03 12:25:11 -05:00
|
|
|
|
2015-01-03 12:39:23 -05:00
|
|
|
result = Curl_client_write(conn, CLIENTWRITE_BODY, (char *)"\n", 1);
|
2015-01-03 12:25:11 -05:00
|
|
|
if(result) {
|
|
|
|
ldap_value_free_len(vals);
|
2015-01-18 15:25:37 -05:00
|
|
|
#if defined(USE_WIN32_LDAP)
|
2015-01-07 14:45:24 -05:00
|
|
|
Curl_unicodefree(attr);
|
|
|
|
#endif
|
2015-01-03 12:25:11 -05:00
|
|
|
ldap_memfree(attribute);
|
|
|
|
if(ber)
|
|
|
|
ber_free(ber, 0);
|
|
|
|
|
2014-12-09 18:41:32 -05:00
|
|
|
goto quit;
|
2015-01-03 12:25:11 -05:00
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
2015-01-03 12:25:11 -05:00
|
|
|
|
|
|
|
/* Free the attribute as we are done with it */
|
2015-01-18 15:25:37 -05:00
|
|
|
#if defined(USE_WIN32_LDAP)
|
2015-01-07 14:45:24 -05:00
|
|
|
Curl_unicodefree(attr);
|
|
|
|
#endif
|
2015-01-03 12:25:11 -05:00
|
|
|
ldap_memfree(attribute);
|
|
|
|
|
2014-12-09 18:41:32 -05:00
|
|
|
result = Curl_client_write(conn, CLIENTWRITE_BODY, (char *)"\n", 1);
|
|
|
|
if(result)
|
|
|
|
goto quit;
|
2009-11-02 13:49:56 -05:00
|
|
|
dlsize++;
|
|
|
|
Curl_pgrsSetDownloadCounter(data, dlsize);
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
2015-01-03 12:05:50 -05:00
|
|
|
|
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:
|
2014-12-09 18:36:31 -05:00
|
|
|
if(ldapmsg) {
|
|
|
|
ldap_msgfree(ldapmsg);
|
2016-12-13 17:34:59 -05:00
|
|
|
LDAP_TRACE(("Received %d entries\n", num));
|
2007-08-16 10:08:47 -04:00
|
|
|
}
|
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
|
|
|
|
2015-01-18 15:25:37 -05:00
|
|
|
#if defined(USE_WIN32_LDAP)
|
2015-01-03 14:59:12 -05:00
|
|
|
Curl_unicodefree(host);
|
|
|
|
#endif
|
|
|
|
|
2001-10-25 04:28:29 -04:00
|
|
|
/* no data to transfer */
|
2019-02-28 05:36:26 -05:00
|
|
|
Curl_setup_transfer(data, -1, -1, FALSE, -1);
|
2014-05-20 04:32:23 -04:00
|
|
|
connclose(conn, "LDAP connection always disable re-use");
|
2004-05-03 05:14:12 -04:00
|
|
|
|
2014-12-09 18:36:31 -05:00
|
|
|
return result;
|
1999-12-29 09:20:26 -05:00
|
|
|
}
|
2004-05-03 05:14:12 -04:00
|
|
|
|
|
|
|
#ifdef DEBUG_LDAP
|
2016-12-13 17:34:59 -05:00
|
|
|
static void _ldap_trace(const char *fmt, ...)
|
2004-05-03 05:14:12 -04:00
|
|
|
{
|
|
|
|
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");
|
2010-11-28 17:11:14 -05:00
|
|
|
do_trace = (env && strtol(env, NULL, 10) > 0);
|
2004-05-03 05:14:12 -04:00
|
|
|
}
|
2007-11-05 04:45:09 -05:00
|
|
|
if(!do_trace)
|
2004-05-03 05:14:12 -04:00
|
|
|
return;
|
|
|
|
|
2016-12-13 17:34:59 -05:00
|
|
|
va_start(args, fmt);
|
|
|
|
vfprintf(stderr, fmt, args);
|
|
|
|
va_end(args);
|
2004-05-03 05:14:12 -04:00
|
|
|
}
|
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.
|
|
|
|
*/
|
2016-12-13 17:34:59 -05:00
|
|
|
static int str2scope(const char *p)
|
2004-05-03 05:14:12 -04:00
|
|
|
{
|
2016-10-31 04:37:30 -04:00
|
|
|
if(strcasecompare(p, "one"))
|
|
|
|
return LDAP_SCOPE_ONELEVEL;
|
|
|
|
if(strcasecompare(p, "onetree"))
|
|
|
|
return LDAP_SCOPE_ONELEVEL;
|
|
|
|
if(strcasecompare(p, "base"))
|
|
|
|
return LDAP_SCOPE_BASE;
|
|
|
|
if(strcasecompare(p, "sub"))
|
|
|
|
return LDAP_SCOPE_SUBTREE;
|
|
|
|
if(strcasecompare(p, "subtree"))
|
|
|
|
return LDAP_SCOPE_SUBTREE;
|
2004-05-03 05:14:12 -04:00
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Split 'str' into strings separated by commas.
|
2015-01-03 15:49:11 -05:00
|
|
|
* Note: out[] points into 'str'.
|
2004-05-03 05:14:12 -04:00
|
|
|
*/
|
2015-01-03 15:49:11 -05:00
|
|
|
static bool split_str(char *str, char ***out, size_t *count)
|
2004-05-03 05:14:12 -04:00
|
|
|
{
|
2015-01-03 15:49:11 -05:00
|
|
|
char **res;
|
|
|
|
char *lasts;
|
|
|
|
char *s;
|
|
|
|
size_t i;
|
|
|
|
size_t items = 1;
|
|
|
|
|
|
|
|
s = strchr(str, ',');
|
|
|
|
while(s) {
|
|
|
|
items++;
|
|
|
|
s = strchr(++s, ',');
|
|
|
|
}
|
2004-05-03 05:14:12 -04:00
|
|
|
|
2015-01-03 15:49:11 -05:00
|
|
|
res = calloc(items, sizeof(char *));
|
2007-11-05 04:45:09 -05:00
|
|
|
if(!res)
|
2015-01-03 15:49:11 -05:00
|
|
|
return FALSE;
|
2004-05-03 05:14:12 -04:00
|
|
|
|
2015-01-03 15:49:11 -05:00
|
|
|
for(i = 0, s = strtok_r(str, ",", &lasts); s && i < items;
|
2011-04-20 09:17:42 -04:00
|
|
|
s = strtok_r(NULL, ",", &lasts), i++)
|
2004-05-03 05:14:12 -04:00
|
|
|
res[i] = s;
|
2015-01-03 15:49:11 -05:00
|
|
|
|
|
|
|
*out = res;
|
|
|
|
*count = items;
|
|
|
|
|
|
|
|
return TRUE;
|
2004-05-03 05:14:12 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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
|
|
|
*/
|
2016-10-08 05:21:38 -04:00
|
|
|
static int _ldap_url_parse2(const struct connectdata *conn, LDAPURLDesc *ludp)
|
2004-05-03 05:14:12 -04:00
|
|
|
{
|
2015-01-03 15:36:10 -05:00
|
|
|
int rc = LDAP_SUCCESS;
|
|
|
|
char *p;
|
2019-10-04 21:49:43 -04:00
|
|
|
char *path;
|
|
|
|
char *q = NULL;
|
|
|
|
char *query = NULL;
|
2015-01-04 10:16:04 -05:00
|
|
|
size_t i;
|
2004-05-03 05:14:12 -04:00
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if(!conn->data ||
|
2018-09-14 17:33:28 -04:00
|
|
|
!conn->data->state.up.path ||
|
|
|
|
conn->data->state.up.path[0] != '/' ||
|
2018-12-11 05:15:15 -05:00
|
|
|
!strncasecompare("LDAP", conn->data->state.up.scheme, 4))
|
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;
|
|
|
|
|
2015-01-03 15:36:10 -05:00
|
|
|
/* Duplicate the path */
|
2018-09-14 17:33:28 -04:00
|
|
|
p = path = strdup(conn->data->state.up.path + 1);
|
2015-01-03 15:36:10 -05:00
|
|
|
if(!path)
|
2007-08-12 18:25:50 -04:00
|
|
|
return LDAP_NO_MEMORY;
|
2004-05-03 05:14:12 -04:00
|
|
|
|
2019-10-04 21:49:43 -04:00
|
|
|
/* Duplicate the query if present */
|
|
|
|
if(conn->data->state.up.query) {
|
|
|
|
q = query = strdup(conn->data->state.up.query);
|
|
|
|
if(!query) {
|
|
|
|
free(path);
|
|
|
|
return LDAP_NO_MEMORY;
|
|
|
|
}
|
2018-12-11 05:15:15 -05:00
|
|
|
}
|
2015-01-03 15:36:10 -05:00
|
|
|
|
2018-12-11 05:15:15 -05:00
|
|
|
/* Parse the DN (Distinguished Name) */
|
2015-01-03 15:36:10 -05:00
|
|
|
if(*p) {
|
|
|
|
char *dn = p;
|
2015-01-07 08:50:56 -05:00
|
|
|
char *unescaped;
|
2016-10-08 05:21:38 -04:00
|
|
|
CURLcode result;
|
2015-01-03 15:36:10 -05:00
|
|
|
|
2016-12-13 17:34:59 -05:00
|
|
|
LDAP_TRACE(("DN '%s'\n", dn));
|
2015-01-03 15:36:10 -05:00
|
|
|
|
2015-01-04 09:11:02 -05:00
|
|
|
/* Unescape the DN */
|
2016-10-08 05:21:38 -04:00
|
|
|
result = Curl_urldecode(conn->data, dn, 0, &unescaped, NULL, FALSE);
|
|
|
|
if(result) {
|
2015-01-03 15:36:10 -05:00
|
|
|
rc = LDAP_NO_MEMORY;
|
|
|
|
|
|
|
|
goto quit;
|
|
|
|
}
|
|
|
|
|
2015-01-18 15:25:37 -05:00
|
|
|
#if defined(USE_WIN32_LDAP)
|
2015-01-07 08:50:56 -05:00
|
|
|
/* Convert the unescaped string to a tchar */
|
|
|
|
ludp->lud_dn = Curl_convert_UTF8_to_tchar(unescaped);
|
2015-01-03 15:36:10 -05:00
|
|
|
|
2015-01-07 08:50:56 -05:00
|
|
|
/* Free the unescaped string as we are done with it */
|
|
|
|
Curl_unicodefree(unescaped);
|
2015-01-04 09:11:02 -05:00
|
|
|
|
|
|
|
if(!ludp->lud_dn) {
|
2015-01-03 15:36:10 -05:00
|
|
|
rc = LDAP_NO_MEMORY;
|
|
|
|
|
|
|
|
goto quit;
|
|
|
|
}
|
|
|
|
#else
|
2015-01-07 08:50:56 -05:00
|
|
|
ludp->lud_dn = unescaped;
|
2015-01-03 15:36:10 -05:00
|
|
|
#endif
|
|
|
|
}
|
2004-05-03 05:14:12 -04:00
|
|
|
|
2015-01-03 15:36:10 -05:00
|
|
|
p = q;
|
2007-11-05 04:45:09 -05:00
|
|
|
if(!p)
|
2015-01-03 16:04:13 -05:00
|
|
|
goto quit;
|
2004-05-03 05:14:12 -04:00
|
|
|
|
2015-01-03 15:49:11 -05:00
|
|
|
/* Parse the attributes. skip "??" */
|
2004-05-03 05:14:12 -04:00
|
|
|
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
|
|
|
|
2015-01-03 15:49:11 -05:00
|
|
|
if(*p) {
|
|
|
|
char **attributes;
|
|
|
|
size_t count = 0;
|
|
|
|
|
|
|
|
/* Split the string into an array of attributes */
|
|
|
|
if(!split_str(p, &attributes, &count)) {
|
|
|
|
rc = LDAP_NO_MEMORY;
|
|
|
|
|
|
|
|
goto quit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Allocate our array (+1 for the NULL entry) */
|
2015-01-18 15:25:37 -05:00
|
|
|
#if defined(USE_WIN32_LDAP)
|
2015-01-03 15:49:11 -05:00
|
|
|
ludp->lud_attrs = calloc(count + 1, sizeof(TCHAR *));
|
|
|
|
#else
|
|
|
|
ludp->lud_attrs = calloc(count + 1, sizeof(char *));
|
|
|
|
#endif
|
2015-01-03 15:36:10 -05:00
|
|
|
if(!ludp->lud_attrs) {
|
2015-03-16 10:01:15 -04:00
|
|
|
free(attributes);
|
2015-01-03 15:49:11 -05:00
|
|
|
|
2015-01-03 15:36:10 -05:00
|
|
|
rc = LDAP_NO_MEMORY;
|
|
|
|
|
|
|
|
goto quit;
|
|
|
|
}
|
2004-05-03 05:14:12 -04:00
|
|
|
|
2015-01-03 15:49:11 -05:00
|
|
|
for(i = 0; i < count; i++) {
|
2015-01-07 08:50:56 -05:00
|
|
|
char *unescaped;
|
2016-10-08 05:21:38 -04:00
|
|
|
CURLcode result;
|
2015-01-03 15:49:11 -05:00
|
|
|
|
2016-12-13 17:34:59 -05:00
|
|
|
LDAP_TRACE(("attr[%d] '%s'\n", i, attributes[i]));
|
2015-01-03 15:49:11 -05:00
|
|
|
|
|
|
|
/* Unescape the attribute */
|
2016-10-08 05:21:38 -04:00
|
|
|
result = Curl_urldecode(conn->data, attributes[i], 0, &unescaped, NULL,
|
|
|
|
FALSE);
|
|
|
|
if(result) {
|
2015-03-16 10:01:15 -04:00
|
|
|
free(attributes);
|
2015-01-03 15:49:11 -05:00
|
|
|
|
|
|
|
rc = LDAP_NO_MEMORY;
|
|
|
|
|
|
|
|
goto quit;
|
|
|
|
}
|
|
|
|
|
2015-01-18 15:25:37 -05:00
|
|
|
#if defined(USE_WIN32_LDAP)
|
2015-01-07 08:50:56 -05:00
|
|
|
/* Convert the unescaped string to a tchar */
|
|
|
|
ludp->lud_attrs[i] = Curl_convert_UTF8_to_tchar(unescaped);
|
2015-01-03 15:49:11 -05:00
|
|
|
|
2015-01-07 08:50:56 -05:00
|
|
|
/* Free the unescaped string as we are done with it */
|
|
|
|
Curl_unicodefree(unescaped);
|
2015-01-03 15:49:11 -05:00
|
|
|
|
|
|
|
if(!ludp->lud_attrs[i]) {
|
2015-03-16 10:01:15 -04:00
|
|
|
free(attributes);
|
2015-01-03 15:49:11 -05:00
|
|
|
|
|
|
|
rc = LDAP_NO_MEMORY;
|
|
|
|
|
|
|
|
goto quit;
|
|
|
|
}
|
|
|
|
#else
|
2015-01-07 08:50:56 -05:00
|
|
|
ludp->lud_attrs[i] = unescaped;
|
2015-01-03 15:49:11 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
ludp->lud_attrs_dups++;
|
|
|
|
}
|
2015-01-04 15:06:04 -05:00
|
|
|
|
2015-03-16 10:01:15 -04:00
|
|
|
free(attributes);
|
2004-05-03 05:14:12 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
p = q;
|
2007-11-05 04:45:09 -05:00
|
|
|
if(!p)
|
2015-01-03 16:04:13 -05:00
|
|
|
goto quit;
|
2004-05-03 05:14:12 -04:00
|
|
|
|
2015-01-03 15:58:29 -05:00
|
|
|
/* Parse the scope. skip "??" */
|
2004-05-03 05:14:12 -04:00
|
|
|
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
|
|
|
|
2015-01-03 15:58:29 -05:00
|
|
|
if(*p) {
|
2004-05-03 05:14:12 -04:00
|
|
|
ludp->lud_scope = str2scope(p);
|
2013-09-05 17:51:53 -04:00
|
|
|
if(ludp->lud_scope == -1) {
|
2015-01-03 15:36:10 -05:00
|
|
|
rc = LDAP_INVALID_SYNTAX;
|
|
|
|
|
|
|
|
goto quit;
|
2013-09-05 17:51:53 -04:00
|
|
|
}
|
2016-12-13 17:34:59 -05:00
|
|
|
LDAP_TRACE(("scope %d\n", ludp->lud_scope));
|
2004-05-03 05:14:12 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
p = q;
|
2007-11-05 04:45:09 -05:00
|
|
|
if(!p)
|
2015-01-03 16:04:13 -05:00
|
|
|
goto quit;
|
2004-05-03 05:14:12 -04:00
|
|
|
|
2015-01-03 15:58:29 -05:00
|
|
|
/* Parse the filter */
|
2004-05-03 05:14:12 -04:00
|
|
|
q = strchr(p, '?');
|
2007-11-05 04:45:09 -05:00
|
|
|
if(q)
|
2007-08-12 18:25:50 -04:00
|
|
|
*q++ = '\0';
|
2015-01-03 15:58:29 -05:00
|
|
|
|
|
|
|
if(*p) {
|
|
|
|
char *filter = p;
|
2015-01-07 08:50:56 -05:00
|
|
|
char *unescaped;
|
2016-10-08 05:21:38 -04:00
|
|
|
CURLcode result;
|
2015-01-03 15:58:29 -05:00
|
|
|
|
2016-12-13 17:34:59 -05:00
|
|
|
LDAP_TRACE(("filter '%s'\n", filter));
|
2015-01-03 15:58:29 -05:00
|
|
|
|
|
|
|
/* Unescape the filter */
|
2016-10-08 05:21:38 -04:00
|
|
|
result = Curl_urldecode(conn->data, filter, 0, &unescaped, NULL, FALSE);
|
|
|
|
if(result) {
|
2015-01-03 15:58:29 -05:00
|
|
|
rc = LDAP_NO_MEMORY;
|
|
|
|
|
|
|
|
goto quit;
|
|
|
|
}
|
|
|
|
|
2015-01-18 15:25:37 -05:00
|
|
|
#if defined(USE_WIN32_LDAP)
|
2015-01-07 08:50:56 -05:00
|
|
|
/* Convert the unescaped string to a tchar */
|
|
|
|
ludp->lud_filter = Curl_convert_UTF8_to_tchar(unescaped);
|
2015-01-03 15:58:29 -05:00
|
|
|
|
2015-01-07 08:50:56 -05:00
|
|
|
/* Free the unescaped string as we are done with it */
|
|
|
|
Curl_unicodefree(unescaped);
|
2015-01-03 15:58:29 -05:00
|
|
|
|
|
|
|
if(!ludp->lud_filter) {
|
|
|
|
rc = LDAP_NO_MEMORY;
|
|
|
|
|
|
|
|
goto quit;
|
|
|
|
}
|
|
|
|
#else
|
2015-01-07 08:50:56 -05:00
|
|
|
ludp->lud_filter = unescaped;
|
2015-01-03 15:58:29 -05:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
p = q;
|
|
|
|
if(p && !*p) {
|
2015-01-03 15:36:10 -05:00
|
|
|
rc = LDAP_INVALID_SYNTAX;
|
|
|
|
|
|
|
|
goto quit;
|
2013-09-05 17:51:53 -04:00
|
|
|
}
|
2004-05-03 05:14:12 -04:00
|
|
|
|
2015-01-03 15:36:10 -05:00
|
|
|
quit:
|
2015-03-16 10:01:15 -04:00
|
|
|
free(path);
|
2018-12-11 05:15:15 -05:00
|
|
|
free(query);
|
2015-01-03 15:36:10 -05:00
|
|
|
|
|
|
|
return rc;
|
2004-05-03 05:14:12 -04:00
|
|
|
}
|
|
|
|
|
2016-10-08 05:21:38 -04:00
|
|
|
static int _ldap_url_parse(const struct connectdata *conn,
|
|
|
|
LDAPURLDesc **ludpp)
|
2004-05-03 05:14:12 -04:00
|
|
|
{
|
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;
|
|
|
|
|
2016-10-08 05:21:38 -04:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2016-10-08 05:21:38 -04:00
|
|
|
static void _ldap_free_urldesc(LDAPURLDesc *ludp)
|
2004-05-03 05:14:12 -04:00
|
|
|
{
|
2007-11-05 04:45:09 -05:00
|
|
|
if(!ludp)
|
2011-04-20 09:17:42 -04:00
|
|
|
return;
|
2004-05-03 05:14:12 -04:00
|
|
|
|
2015-03-11 12:41:01 -04:00
|
|
|
free(ludp->lud_dn);
|
|
|
|
free(ludp->lud_filter);
|
2004-05-03 05:14:12 -04:00
|
|
|
|
2007-11-05 04:45:09 -05:00
|
|
|
if(ludp->lud_attrs) {
|
2019-05-11 15:42:48 -04:00
|
|
|
size_t i;
|
2013-09-08 18:01:52 -04:00
|
|
|
for(i = 0; i < ludp->lud_attrs_dups; i++)
|
|
|
|
free(ludp->lud_attrs[i]);
|
2004-05-03 05:14:12 -04:00
|
|
|
free(ludp->lud_attrs);
|
|
|
|
}
|
|
|
|
|
2016-12-13 17:34:59 -05:00
|
|
|
free(ludp);
|
2004-05-03 05:14:12 -04:00
|
|
|
}
|
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 */
|