214 lines
4.4 KiB
C
214 lines
4.4 KiB
C
/*
|
|
* 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"
|
|
|
|
#ifdef HAVE_LDAP_H
|
|
#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 WLDAP32_ldap_count_values_len( struct WLDAP32_berval **vals )
|
|
{
|
|
ULONG ret = LDAP_NOT_SUPPORTED;
|
|
#ifdef HAVE_LDAP
|
|
|
|
TRACE( "(%p)\n", vals );
|
|
ret = ldap_count_values_len( (struct berval **)vals );
|
|
|
|
#endif
|
|
return ret;
|
|
}
|
|
|
|
ULONG ldap_count_valuesA( PCHAR *vals )
|
|
{
|
|
ULONG ret = LDAP_NOT_SUPPORTED;
|
|
#ifdef HAVE_LDAP
|
|
WCHAR **valsW = NULL;
|
|
|
|
TRACE( "(%p)\n", vals );
|
|
|
|
if (vals) {
|
|
valsW = strarrayAtoW( vals );
|
|
if (!valsW) return WLDAP32_LDAP_NO_MEMORY;
|
|
}
|
|
|
|
ret = ldap_count_valuesW( valsW );
|
|
strarrayfreeW( valsW );
|
|
|
|
#endif
|
|
return ret;
|
|
}
|
|
|
|
ULONG ldap_count_valuesW( PWCHAR *vals )
|
|
{
|
|
ULONG ret = LDAP_NOT_SUPPORTED;
|
|
#ifdef HAVE_LDAP
|
|
char **valsU = NULL;
|
|
|
|
TRACE( "(%p)\n", vals );
|
|
|
|
if (vals) {
|
|
valsU = strarrayWtoU( vals );
|
|
if (!valsU) return WLDAP32_LDAP_NO_MEMORY;
|
|
}
|
|
|
|
ret = ldap_count_values( valsU );
|
|
strarrayfreeU( valsU );
|
|
|
|
#endif
|
|
return ret;
|
|
}
|
|
|
|
PCHAR *ldap_get_valuesA( WLDAP32_LDAP *ld, WLDAP32_LDAPMessage *entry, PCHAR attr )
|
|
{
|
|
PCHAR *ret = NULL;
|
|
#ifdef HAVE_LDAP
|
|
WCHAR *attrW = NULL, **retW;
|
|
|
|
TRACE( "(%p, %p, %s)\n", ld, entry, debugstr_a(attr) );
|
|
|
|
if (!ld || !entry || !attr) return NULL;
|
|
|
|
attrW = strAtoW( attr );
|
|
if (!attrW) return NULL;
|
|
|
|
retW = ldap_get_valuesW( ld, entry, attrW );
|
|
|
|
ret = strarrayWtoA( retW );
|
|
ldap_value_freeW( retW );
|
|
strfreeW( attrW );
|
|
|
|
#endif
|
|
return ret;
|
|
}
|
|
|
|
PWCHAR *ldap_get_valuesW( WLDAP32_LDAP *ld, WLDAP32_LDAPMessage *entry, PWCHAR attr )
|
|
{
|
|
PWCHAR *ret = NULL;
|
|
#ifdef HAVE_LDAP
|
|
char *attrU = NULL, **retU;
|
|
|
|
TRACE( "(%p, %p, %s)\n", ld, entry, debugstr_w(attr) );
|
|
|
|
if (!ld || !entry || !attr) return NULL;
|
|
|
|
attrU = strWtoU( attr );
|
|
if (!attrU) return NULL;
|
|
|
|
retU = ldap_get_values( ld, entry, attrU );
|
|
|
|
ret = strarrayUtoW( retU );
|
|
ldap_value_free( retU );
|
|
strfreeU( attrU );
|
|
|
|
#endif
|
|
return ret;
|
|
}
|
|
|
|
struct WLDAP32_berval **ldap_get_values_lenA( WLDAP32_LDAP *ld, WLDAP32_LDAPMessage *message,
|
|
PCHAR attr )
|
|
{
|
|
#ifdef HAVE_LDAP
|
|
WCHAR *attrW = NULL;
|
|
struct WLDAP32_berval **ret;
|
|
|
|
TRACE( "(%p, %p, %s)\n", ld, message, debugstr_a(attr) );
|
|
|
|
if (!ld || !message || !attr) return NULL;
|
|
|
|
attrW = strAtoW( attr );
|
|
if (!attrW) return NULL;
|
|
|
|
ret = ldap_get_values_lenW( ld, message, attrW );
|
|
|
|
strfreeW( attrW );
|
|
return ret;
|
|
|
|
#endif
|
|
return NULL;
|
|
}
|
|
|
|
struct WLDAP32_berval **ldap_get_values_lenW( WLDAP32_LDAP *ld, WLDAP32_LDAPMessage *message,
|
|
PWCHAR attr )
|
|
{
|
|
#ifdef HAVE_LDAP
|
|
char *attrU = NULL;
|
|
struct berval **ret;
|
|
|
|
TRACE( "(%p, %p, %s)\n", ld, message, debugstr_w(attr) );
|
|
|
|
if (!ld || !message || !attr) return NULL;
|
|
|
|
attrU = strWtoU( attr );
|
|
if (!attrU) return NULL;
|
|
|
|
ret = ldap_get_values_len( ld, message, attrU );
|
|
|
|
strfreeU( attrU );
|
|
return (struct WLDAP32_berval **)ret;
|
|
|
|
#endif
|
|
return NULL;
|
|
}
|
|
|
|
ULONG WLDAP32_ldap_value_free_len( struct WLDAP32_berval **vals )
|
|
{
|
|
#ifdef HAVE_LDAP
|
|
|
|
TRACE( "(%p)\n", vals );
|
|
ldap_value_free_len( (struct berval **)vals );
|
|
|
|
#endif
|
|
return LDAP_SUCCESS;
|
|
}
|
|
|
|
ULONG ldap_value_freeA( PCHAR *vals )
|
|
{
|
|
TRACE( "(%p)\n", vals );
|
|
|
|
strarrayfreeA( vals );
|
|
return LDAP_SUCCESS;
|
|
}
|
|
|
|
ULONG ldap_value_freeW( PWCHAR *vals )
|
|
{
|
|
TRACE( "(%p)\n", vals );
|
|
|
|
strarrayfreeW( vals );
|
|
return LDAP_SUCCESS;
|
|
}
|