2005-07-22 11:02:55 +02:00
|
|
|
/*
|
|
|
|
* WLDAP32 - LDAP support for Wine
|
|
|
|
*
|
|
|
|
* Copyright 2005 Hans Leidekker
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include "wine/port.h"
|
|
|
|
#include "wine/debug.h"
|
|
|
|
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
#include "windef.h"
|
|
|
|
#include "winbase.h"
|
|
|
|
#include "winnls.h"
|
|
|
|
|
2005-08-10 11:49:11 +02:00
|
|
|
#ifdef HAVE_LDAP_H
|
2005-07-22 11:02:55 +02:00
|
|
|
#include <ldap.h>
|
|
|
|
#else
|
|
|
|
#define LDAP_SUCCESS 0x00
|
|
|
|
#define LDAP_NOT_SUPPORTED 0x5c
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "winldap_private.h"
|
|
|
|
#include "wldap32.h"
|
|
|
|
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(wldap32);
|
|
|
|
|
|
|
|
ULONG ldap_searchA( WLDAP32_LDAP *ld, PCHAR base, ULONG scope, PCHAR filter,
|
|
|
|
PCHAR attrs[], ULONG attrsonly )
|
|
|
|
{
|
|
|
|
ULONG ret = LDAP_NOT_SUPPORTED;
|
|
|
|
#ifdef HAVE_LDAP
|
2005-07-26 17:50:47 +02:00
|
|
|
WCHAR *baseW = NULL, *filterW = NULL, **attrsW = NULL;
|
2005-08-02 16:42:10 +02:00
|
|
|
|
|
|
|
ret = WLDAP32_LDAP_NO_MEMORY;
|
2005-07-22 11:02:55 +02:00
|
|
|
|
|
|
|
TRACE( "(%p, %s, 0x%08lx, %s, %p, 0x%08lx)\n", ld, debugstr_a(base),
|
|
|
|
scope, debugstr_a(filter), attrs, attrsonly );
|
|
|
|
|
2005-07-26 17:50:47 +02:00
|
|
|
if (!ld) return ~0UL;
|
2005-07-22 11:02:55 +02:00
|
|
|
|
2005-07-26 17:50:47 +02:00
|
|
|
if (base) {
|
|
|
|
baseW = strAtoW( base );
|
|
|
|
if (!baseW) goto exit;
|
|
|
|
}
|
|
|
|
if (filter) {
|
|
|
|
filterW = strAtoW( filter );
|
|
|
|
if (!filterW) goto exit;
|
|
|
|
}
|
|
|
|
if (attrs) {
|
|
|
|
attrsW = strarrayAtoW( attrs );
|
|
|
|
if (!attrsW) goto exit;
|
|
|
|
}
|
2005-07-22 11:02:55 +02:00
|
|
|
|
|
|
|
ret = ldap_searchW( ld, baseW, scope, filterW, attrsW, attrsonly );
|
|
|
|
|
2005-07-26 17:50:47 +02:00
|
|
|
exit:
|
2005-07-22 11:02:55 +02:00
|
|
|
strfreeW( baseW );
|
|
|
|
strfreeW( filterW );
|
|
|
|
strarrayfreeW( attrsW );
|
|
|
|
|
|
|
|
#endif
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
ULONG ldap_searchW( WLDAP32_LDAP *ld, PWCHAR base, ULONG scope, PWCHAR filter,
|
|
|
|
PWCHAR attrs[], ULONG attrsonly )
|
|
|
|
{
|
|
|
|
ULONG ret = LDAP_NOT_SUPPORTED;
|
|
|
|
#ifdef HAVE_LDAP
|
2005-07-26 17:50:47 +02:00
|
|
|
char *baseU = NULL, *filterU = NULL, **attrsU = NULL;
|
2005-08-02 16:42:10 +02:00
|
|
|
|
|
|
|
ret = WLDAP32_LDAP_NO_MEMORY;
|
2005-07-22 11:02:55 +02:00
|
|
|
|
|
|
|
TRACE( "(%p, %s, 0x%08lx, %s, %p, 0x%08lx)\n", ld, debugstr_w(base),
|
|
|
|
scope, debugstr_w(filter), attrs, attrsonly );
|
|
|
|
|
2005-07-26 17:50:47 +02:00
|
|
|
if (!ld) return ~0UL;
|
2005-07-22 11:02:55 +02:00
|
|
|
|
2005-07-26 17:50:47 +02:00
|
|
|
if (base) {
|
|
|
|
baseU = strWtoU( base );
|
|
|
|
if (!baseU) goto exit;
|
|
|
|
}
|
|
|
|
if (filter) {
|
|
|
|
filterU = strWtoU( filter );
|
|
|
|
if (!filterU) goto exit;
|
|
|
|
}
|
|
|
|
if (attrs) {
|
|
|
|
attrsU = strarrayWtoU( attrs );
|
|
|
|
if (!attrsU) goto exit;
|
|
|
|
}
|
2005-07-22 11:02:55 +02:00
|
|
|
|
|
|
|
ret = ldap_search( ld, baseU, scope, filterU, attrsU, attrsonly );
|
|
|
|
|
2005-07-26 17:50:47 +02:00
|
|
|
exit:
|
2005-07-22 11:02:55 +02:00
|
|
|
strfreeU( baseU );
|
|
|
|
strfreeU( filterU );
|
|
|
|
strarrayfreeU( attrsU );
|
|
|
|
|
|
|
|
#endif
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2005-07-25 13:09:51 +02:00
|
|
|
ULONG ldap_search_extA( WLDAP32_LDAP *ld, PCHAR base, ULONG scope,
|
|
|
|
PCHAR filter, PCHAR attrs[], ULONG attrsonly, PLDAPControlA *serverctrls,
|
|
|
|
PLDAPControlA *clientctrls, ULONG timelimit, ULONG sizelimit, ULONG *message )
|
|
|
|
{
|
|
|
|
ULONG ret = LDAP_NOT_SUPPORTED;
|
|
|
|
#ifdef HAVE_LDAP
|
2005-07-26 17:50:47 +02:00
|
|
|
WCHAR *baseW = NULL, *filterW = NULL, **attrsW = NULL;
|
|
|
|
LDAPControlW **serverctrlsW = NULL, **clientctrlsW = NULL;
|
2005-08-02 16:42:10 +02:00
|
|
|
|
|
|
|
ret = WLDAP32_LDAP_NO_MEMORY;
|
2005-07-25 13:09:51 +02:00
|
|
|
|
|
|
|
TRACE( "(%p, %s, 0x%08lx, %s, %p, 0x%08lx, %p, %p, 0x%08lx, 0x%08lx, %p)\n",
|
|
|
|
ld, debugstr_a(base), scope, debugstr_a(filter), attrs, attrsonly,
|
|
|
|
serverctrls, clientctrls, timelimit, sizelimit, message );
|
|
|
|
|
2005-07-26 17:50:47 +02:00
|
|
|
if (!ld) return WLDAP32_LDAP_PARAM_ERROR;
|
|
|
|
|
|
|
|
if (base) {
|
|
|
|
baseW = strAtoW( base );
|
|
|
|
if (!baseW) goto exit;
|
|
|
|
}
|
|
|
|
if (filter)
|
|
|
|
{
|
|
|
|
filterW = strAtoW( filter );
|
|
|
|
if (!filterW) goto exit;
|
|
|
|
}
|
|
|
|
if (attrs) {
|
|
|
|
attrsW = strarrayAtoW( attrs );
|
|
|
|
if (!attrsW) goto exit;
|
|
|
|
}
|
|
|
|
if (serverctrls) {
|
|
|
|
serverctrlsW = controlarrayAtoW( serverctrls );
|
|
|
|
if (!serverctrlsW) goto exit;
|
|
|
|
}
|
|
|
|
if (clientctrls) {
|
|
|
|
clientctrlsW = controlarrayAtoW( clientctrls );
|
|
|
|
if (!clientctrlsW) goto exit;
|
|
|
|
}
|
2005-07-25 13:09:51 +02:00
|
|
|
|
|
|
|
ret = ldap_search_extW( ld, baseW, scope, filterW, attrsW, attrsonly,
|
|
|
|
serverctrlsW, clientctrlsW, timelimit, sizelimit, message );
|
|
|
|
|
2005-07-26 17:50:47 +02:00
|
|
|
exit:
|
2005-07-25 13:09:51 +02:00
|
|
|
strfreeW( baseW );
|
|
|
|
strfreeW( filterW );
|
|
|
|
strarrayfreeW( attrsW );
|
|
|
|
controlarrayfreeW( serverctrlsW );
|
|
|
|
controlarrayfreeW( clientctrlsW );
|
|
|
|
|
|
|
|
#endif
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
ULONG ldap_search_extW( WLDAP32_LDAP *ld, PWCHAR base, ULONG scope,
|
|
|
|
PWCHAR filter, PWCHAR attrs[], ULONG attrsonly, PLDAPControlW *serverctrls,
|
|
|
|
PLDAPControlW *clientctrls, ULONG timelimit, ULONG sizelimit, ULONG *message )
|
|
|
|
{
|
|
|
|
ULONG ret = LDAP_NOT_SUPPORTED;
|
|
|
|
#ifdef HAVE_LDAP
|
2005-07-26 17:50:47 +02:00
|
|
|
char *baseU = NULL, *filterU = NULL, **attrsU = NULL;
|
|
|
|
LDAPControl **serverctrlsU = NULL, **clientctrlsU = NULL;
|
2005-07-25 13:09:51 +02:00
|
|
|
struct timeval tv;
|
|
|
|
|
2005-08-02 16:42:10 +02:00
|
|
|
ret = WLDAP32_LDAP_NO_MEMORY;
|
2005-07-26 17:50:47 +02:00
|
|
|
|
2005-07-25 13:09:51 +02:00
|
|
|
TRACE( "(%p, %s, 0x%08lx, %s, %p, 0x%08lx, %p, %p, 0x%08lx, 0x%08lx, %p)\n",
|
|
|
|
ld, debugstr_w(base), scope, debugstr_w(filter), attrs, attrsonly,
|
|
|
|
serverctrls, clientctrls, timelimit, sizelimit, message );
|
|
|
|
|
|
|
|
if (!ld) return ~0UL;
|
|
|
|
|
2005-07-26 17:50:47 +02:00
|
|
|
if (base) {
|
|
|
|
baseU = strWtoU( base );
|
|
|
|
if (!baseU) goto exit;
|
|
|
|
}
|
|
|
|
if (filter) {
|
|
|
|
filterU = strWtoU( filter );
|
|
|
|
if (!filterU) goto exit;
|
|
|
|
}
|
|
|
|
if (attrs) {
|
|
|
|
attrsU = strarrayWtoU( attrs );
|
|
|
|
if (!attrsU) goto exit;
|
|
|
|
}
|
|
|
|
if (serverctrls) {
|
|
|
|
serverctrlsU = controlarrayWtoU( serverctrls );
|
|
|
|
if (!serverctrlsU) goto exit;
|
|
|
|
}
|
|
|
|
if (clientctrls) {
|
|
|
|
clientctrlsU = controlarrayWtoU( clientctrls );
|
|
|
|
if (!clientctrlsU) goto exit;
|
|
|
|
}
|
2005-07-25 13:09:51 +02:00
|
|
|
|
|
|
|
tv.tv_sec = timelimit;
|
|
|
|
tv.tv_usec = 0;
|
|
|
|
|
|
|
|
ret = ldap_search_ext( ld, baseU, scope, filterU, attrsU, attrsonly,
|
|
|
|
serverctrlsU, clientctrlsU, &tv, sizelimit, (int *)message );
|
|
|
|
|
2005-07-26 17:50:47 +02:00
|
|
|
exit:
|
2005-07-25 13:09:51 +02:00
|
|
|
strfreeU( baseU );
|
|
|
|
strfreeU( filterU );
|
|
|
|
strarrayfreeU( attrsU );
|
|
|
|
controlarrayfreeU( serverctrlsU );
|
|
|
|
controlarrayfreeU( clientctrlsU );
|
|
|
|
|
|
|
|
#endif
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
ULONG ldap_search_ext_sA( WLDAP32_LDAP *ld, PCHAR base, ULONG scope,
|
|
|
|
PCHAR filter, PCHAR attrs[], ULONG attrsonly, PLDAPControlA *serverctrls,
|
2005-07-26 17:50:47 +02:00
|
|
|
PLDAPControlA *clientctrls, struct l_timeval* timeout, ULONG sizelimit, WLDAP32_LDAPMessage **res )
|
2005-07-25 13:09:51 +02:00
|
|
|
{
|
|
|
|
ULONG ret = LDAP_NOT_SUPPORTED;
|
|
|
|
#ifdef HAVE_LDAP
|
2005-07-26 17:50:47 +02:00
|
|
|
WCHAR *baseW = NULL, *filterW = NULL, **attrsW = NULL;
|
|
|
|
LDAPControlW **serverctrlsW = NULL, **clientctrlsW = NULL;
|
2005-08-02 16:42:10 +02:00
|
|
|
|
|
|
|
ret = WLDAP32_LDAP_NO_MEMORY;
|
2005-07-25 13:09:51 +02:00
|
|
|
|
2005-07-26 17:50:47 +02:00
|
|
|
TRACE( "(%p, %s, 0x%08lx, %s, %p, 0x%08lx, %p, %p, %p, 0x%08lx, %p)\n",
|
2005-07-25 13:09:51 +02:00
|
|
|
ld, debugstr_a(base), scope, debugstr_a(filter), attrs, attrsonly,
|
2005-07-26 17:50:47 +02:00
|
|
|
serverctrls, clientctrls, timeout, sizelimit, res );
|
|
|
|
|
|
|
|
if (!ld || !res) return WLDAP32_LDAP_PARAM_ERROR;
|
|
|
|
|
|
|
|
if (base) {
|
|
|
|
baseW = strAtoW( base );
|
|
|
|
if (!baseW) goto exit;
|
|
|
|
}
|
|
|
|
if (filter) {
|
|
|
|
filterW = strAtoW( filter );
|
|
|
|
if (!filterW) goto exit;
|
|
|
|
}
|
|
|
|
if (attrs) {
|
|
|
|
attrsW = strarrayAtoW( attrs );
|
|
|
|
if (!attrsW) goto exit;
|
|
|
|
}
|
|
|
|
if (serverctrls) {
|
|
|
|
serverctrlsW = controlarrayAtoW( serverctrls );
|
|
|
|
if (!serverctrlsW) goto exit;
|
|
|
|
}
|
|
|
|
if (clientctrls) {
|
|
|
|
clientctrlsW = controlarrayAtoW( clientctrls );
|
|
|
|
if (!clientctrlsW) goto exit;
|
|
|
|
}
|
2005-07-25 13:09:51 +02:00
|
|
|
|
|
|
|
ret = ldap_search_ext_sW( ld, baseW, scope, filterW, attrsW, attrsonly,
|
2005-07-26 17:50:47 +02:00
|
|
|
serverctrlsW, clientctrlsW, timeout, sizelimit, res );
|
2005-07-25 13:09:51 +02:00
|
|
|
|
2005-07-26 17:50:47 +02:00
|
|
|
exit:
|
2005-07-25 13:09:51 +02:00
|
|
|
strfreeW( baseW );
|
|
|
|
strfreeW( filterW );
|
|
|
|
strarrayfreeW( attrsW );
|
|
|
|
controlarrayfreeW( serverctrlsW );
|
|
|
|
controlarrayfreeW( clientctrlsW );
|
|
|
|
|
|
|
|
#endif
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
ULONG ldap_search_ext_sW( WLDAP32_LDAP *ld, PWCHAR base, ULONG scope,
|
|
|
|
PWCHAR filter, PWCHAR attrs[], ULONG attrsonly, PLDAPControlW *serverctrls,
|
2005-07-26 17:50:47 +02:00
|
|
|
PLDAPControlW *clientctrls, struct l_timeval* timeout, ULONG sizelimit, WLDAP32_LDAPMessage **res )
|
2005-07-25 13:09:51 +02:00
|
|
|
{
|
|
|
|
ULONG ret = LDAP_NOT_SUPPORTED;
|
|
|
|
#ifdef HAVE_LDAP
|
2005-07-26 17:50:47 +02:00
|
|
|
char *baseU = NULL, *filterU = NULL, **attrsU = NULL;
|
|
|
|
LDAPControl **serverctrlsU = NULL, **clientctrlsU = NULL;
|
2005-08-02 16:42:10 +02:00
|
|
|
|
|
|
|
ret = WLDAP32_LDAP_NO_MEMORY;
|
2005-07-25 13:09:51 +02:00
|
|
|
|
2005-07-26 17:50:47 +02:00
|
|
|
TRACE( "(%p, %s, 0x%08lx, %s, %p, 0x%08lx, %p, %p, %p, 0x%08lx, %p)\n",
|
2005-07-25 13:09:51 +02:00
|
|
|
ld, debugstr_w(base), scope, debugstr_w(filter), attrs, attrsonly,
|
2005-07-26 17:50:47 +02:00
|
|
|
serverctrls, clientctrls, timeout, sizelimit, res );
|
|
|
|
|
|
|
|
if (!ld || !res) return WLDAP32_LDAP_PARAM_ERROR;
|
|
|
|
|
|
|
|
if (base) {
|
|
|
|
baseU = strWtoU( base );
|
|
|
|
if (!baseU) goto exit;
|
|
|
|
}
|
|
|
|
if (filter) {
|
|
|
|
filterU = strWtoU( filter );
|
|
|
|
if (!filterU) goto exit;
|
|
|
|
}
|
|
|
|
if (attrs) {
|
|
|
|
attrsU = strarrayWtoU( attrs );
|
|
|
|
if (!attrsU) goto exit;
|
|
|
|
}
|
|
|
|
if (serverctrls) {
|
|
|
|
serverctrlsU = controlarrayWtoU( serverctrls );
|
|
|
|
if (!serverctrlsU) goto exit;
|
|
|
|
}
|
|
|
|
if (clientctrls) {
|
|
|
|
clientctrlsU = controlarrayWtoU( clientctrls );
|
|
|
|
if (!clientctrlsU) goto exit;
|
|
|
|
}
|
2005-07-25 13:09:51 +02:00
|
|
|
|
|
|
|
ret = ldap_search_ext_s( ld, baseU, scope, filterU, attrsU, attrsonly,
|
2005-07-26 17:50:47 +02:00
|
|
|
serverctrlsU, clientctrlsU, (struct timeval *)timeout, sizelimit, res );
|
2005-07-25 13:09:51 +02:00
|
|
|
|
2005-07-26 17:50:47 +02:00
|
|
|
exit:
|
2005-07-25 13:09:51 +02:00
|
|
|
strfreeU( baseU );
|
|
|
|
strfreeU( filterU );
|
|
|
|
strarrayfreeU( attrsU );
|
|
|
|
controlarrayfreeU( serverctrlsU );
|
|
|
|
controlarrayfreeU( clientctrlsU );
|
|
|
|
|
|
|
|
#endif
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2005-07-22 11:02:55 +02:00
|
|
|
ULONG ldap_search_sA( WLDAP32_LDAP *ld, PCHAR base, ULONG scope, PCHAR filter,
|
|
|
|
PCHAR attrs[], ULONG attrsonly, WLDAP32_LDAPMessage **res )
|
|
|
|
{
|
|
|
|
ULONG ret = LDAP_NOT_SUPPORTED;
|
|
|
|
#ifdef HAVE_LDAP
|
2005-07-26 17:50:47 +02:00
|
|
|
WCHAR *baseW = NULL, *filterW = NULL, **attrsW = NULL;
|
2005-08-02 16:42:10 +02:00
|
|
|
|
|
|
|
ret = WLDAP32_LDAP_NO_MEMORY;
|
2005-07-22 11:02:55 +02:00
|
|
|
|
|
|
|
TRACE( "(%p, %s, 0x%08lx, %s, %p, 0x%08lx, %p)\n", ld, debugstr_a(base),
|
|
|
|
scope, debugstr_a(filter), attrs, attrsonly, res );
|
|
|
|
|
2005-07-26 17:50:47 +02:00
|
|
|
if (!ld || !res) return WLDAP32_LDAP_PARAM_ERROR;
|
|
|
|
|
|
|
|
if (base) {
|
|
|
|
baseW = strAtoW( base );
|
|
|
|
if (!baseW) goto exit;
|
|
|
|
}
|
|
|
|
if (filter) {
|
|
|
|
filterW = strAtoW( filter );
|
|
|
|
if (!filterW) goto exit;
|
|
|
|
}
|
|
|
|
if (attrs) {
|
|
|
|
attrsW = strarrayAtoW( attrs );
|
|
|
|
if (!attrsW) goto exit;
|
|
|
|
}
|
2005-07-22 11:02:55 +02:00
|
|
|
|
|
|
|
ret = ldap_search_sW( ld, baseW, scope, filterW, attrsW, attrsonly, res );
|
|
|
|
|
2005-07-26 17:50:47 +02:00
|
|
|
exit:
|
2005-07-22 11:02:55 +02:00
|
|
|
strfreeW( baseW );
|
|
|
|
strfreeW( filterW );
|
|
|
|
strarrayfreeW( attrsW );
|
|
|
|
|
|
|
|
#endif
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
ULONG ldap_search_sW( WLDAP32_LDAP *ld, PWCHAR base, ULONG scope, PWCHAR filter,
|
|
|
|
PWCHAR attrs[], ULONG attrsonly, WLDAP32_LDAPMessage **res )
|
|
|
|
{
|
|
|
|
ULONG ret = LDAP_NOT_SUPPORTED;
|
|
|
|
#ifdef HAVE_LDAP
|
2005-07-26 17:50:47 +02:00
|
|
|
char *baseU = NULL, *filterU = NULL, **attrsU = NULL;
|
2005-08-02 16:42:10 +02:00
|
|
|
|
|
|
|
ret = WLDAP32_LDAP_NO_MEMORY;
|
2005-07-22 11:02:55 +02:00
|
|
|
|
|
|
|
TRACE( "(%p, %s, 0x%08lx, %s, %p, 0x%08lx, %p)\n", ld, debugstr_w(base),
|
|
|
|
scope, debugstr_w(filter), attrs, attrsonly, res );
|
|
|
|
|
2005-07-26 17:50:47 +02:00
|
|
|
if (!ld || !res) return WLDAP32_LDAP_PARAM_ERROR;
|
|
|
|
|
|
|
|
if (base) {
|
|
|
|
baseU = strWtoU( base );
|
|
|
|
if (!baseU) goto exit;
|
|
|
|
}
|
|
|
|
if (filter) {
|
|
|
|
filterU = strWtoU( filter );
|
|
|
|
if (!filterU) goto exit;
|
|
|
|
}
|
|
|
|
if (attrs) {
|
|
|
|
attrsU = strarrayWtoU( attrs );
|
|
|
|
if (!attrsU) goto exit;
|
|
|
|
}
|
2005-07-22 11:02:55 +02:00
|
|
|
|
|
|
|
ret = ldap_search_s( ld, baseU, scope, filterU, attrsU, attrsonly, res );
|
|
|
|
|
2005-07-26 17:50:47 +02:00
|
|
|
exit:
|
2005-07-22 11:02:55 +02:00
|
|
|
strfreeU( baseU );
|
|
|
|
strfreeU( filterU );
|
|
|
|
strarrayfreeU( attrsU );
|
|
|
|
|
|
|
|
#endif
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
ULONG ldap_search_stA( WLDAP32_LDAP *ld, const PCHAR base, ULONG scope,
|
|
|
|
const PCHAR filter, PCHAR attrs[], ULONG attrsonly,
|
|
|
|
struct l_timeval *timeout, WLDAP32_LDAPMessage **res )
|
|
|
|
{
|
|
|
|
ULONG ret = LDAP_NOT_SUPPORTED;
|
|
|
|
#ifdef HAVE_LDAP
|
2005-07-26 17:50:47 +02:00
|
|
|
WCHAR *baseW = NULL, *filterW = NULL, **attrsW = NULL;
|
2005-08-02 16:42:10 +02:00
|
|
|
|
|
|
|
ret = WLDAP32_LDAP_NO_MEMORY;
|
2005-07-22 11:02:55 +02:00
|
|
|
|
|
|
|
TRACE( "(%p, %s, 0x%08lx, %s, %p, 0x%08lx, %p, %p)\n", ld,
|
|
|
|
debugstr_a(base), scope, debugstr_a(filter), attrs,
|
|
|
|
attrsonly, timeout, res );
|
|
|
|
|
2005-07-26 17:50:47 +02:00
|
|
|
if (!ld || !res) return WLDAP32_LDAP_PARAM_ERROR;
|
|
|
|
|
|
|
|
if (base) {
|
|
|
|
baseW = strAtoW( base );
|
|
|
|
if (!baseW) goto exit;
|
|
|
|
}
|
|
|
|
if (filter) {
|
|
|
|
filterW = strAtoW( filter );
|
|
|
|
if (!filterW) goto exit;
|
|
|
|
}
|
|
|
|
if (attrs) {
|
|
|
|
attrsW = strarrayAtoW( attrs );
|
|
|
|
if (!attrsW) goto exit;
|
|
|
|
}
|
2005-07-22 11:02:55 +02:00
|
|
|
|
|
|
|
ret = ldap_search_stW( ld, baseW, scope, filterW, attrsW, attrsonly,
|
|
|
|
timeout, res );
|
|
|
|
|
2005-07-26 17:50:47 +02:00
|
|
|
exit:
|
2005-07-22 11:02:55 +02:00
|
|
|
strfreeW( baseW );
|
|
|
|
strfreeW( filterW );
|
|
|
|
strarrayfreeW( attrsW );
|
|
|
|
|
|
|
|
#endif
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
ULONG ldap_search_stW( WLDAP32_LDAP *ld, const PWCHAR base, ULONG scope,
|
|
|
|
const PWCHAR filter, PWCHAR attrs[], ULONG attrsonly,
|
|
|
|
struct l_timeval *timeout, WLDAP32_LDAPMessage **res )
|
|
|
|
{
|
|
|
|
ULONG ret = LDAP_NOT_SUPPORTED;
|
|
|
|
#ifdef HAVE_LDAP
|
2005-07-26 17:50:47 +02:00
|
|
|
char *baseU = NULL, *filterU = NULL, **attrsU = NULL;
|
2005-08-02 16:42:10 +02:00
|
|
|
|
|
|
|
ret = WLDAP32_LDAP_NO_MEMORY;
|
2005-07-22 11:02:55 +02:00
|
|
|
|
|
|
|
TRACE( "(%p, %s, 0x%08lx, %s, %p, 0x%08lx, %p, %p)\n", ld,
|
|
|
|
debugstr_w(base), scope, debugstr_w(filter), attrs,
|
|
|
|
attrsonly, timeout, res );
|
|
|
|
|
2005-07-26 17:50:47 +02:00
|
|
|
if (!ld || !res) return WLDAP32_LDAP_PARAM_ERROR;
|
|
|
|
|
|
|
|
if (base) {
|
|
|
|
baseU = strWtoU( base );
|
|
|
|
if (!baseU) goto exit;
|
|
|
|
}
|
|
|
|
if (filter) {
|
|
|
|
filterU = strWtoU( filter );
|
|
|
|
if (!filterU) goto exit;
|
|
|
|
}
|
|
|
|
if (attrs) {
|
|
|
|
attrsU = strarrayWtoU( attrs );
|
|
|
|
if (!attrsU) goto exit;
|
|
|
|
}
|
2005-07-22 11:02:55 +02:00
|
|
|
|
|
|
|
ret = ldap_search_st( ld, baseU, scope, filterU, attrsU, attrsonly,
|
|
|
|
(struct timeval *)timeout, res );
|
|
|
|
|
2005-07-26 17:50:47 +02:00
|
|
|
exit:
|
2005-07-22 11:02:55 +02:00
|
|
|
strfreeU( baseU );
|
|
|
|
strfreeU( filterU );
|
|
|
|
strarrayfreeU( attrsU );
|
|
|
|
|
|
|
|
#endif
|
|
|
|
return ret;
|
|
|
|
}
|