mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 08:13:18 +00:00
8fb04515cf
ctxt_handle is moved to the top of struct tlsw_session so that it can be easily retrieved via LDAP_OPT_X_TLS_SSL_CTX. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=54727
267 lines
9.1 KiB
C
267 lines
9.1 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
|
|
#include <stdarg.h>
|
|
#include "windef.h"
|
|
#include "winbase.h"
|
|
#include "winnls.h"
|
|
|
|
#include "wine/debug.h"
|
|
#include "winldap_private.h"
|
|
|
|
WINE_DEFAULT_DEBUG_CHANNEL(wldap32);
|
|
|
|
/***********************************************************************
|
|
* ldap_compareA (WLDAP32.@)
|
|
*/
|
|
ULONG CDECL ldap_compareA( LDAP *ld, char *dn, char *attr, char *value )
|
|
{
|
|
ULONG ret = ~0u;
|
|
WCHAR *dnW = NULL, *attrW = NULL, *valueW = NULL;
|
|
|
|
TRACE( "(%p, %s, %s, %s)\n", ld, debugstr_a(dn), debugstr_a(attr), debugstr_a(value) );
|
|
|
|
if (!ld || !attr) return ~0u;
|
|
|
|
if (dn && !(dnW = strAtoW( dn ))) goto exit;
|
|
if (!(attrW = strAtoW( attr ))) goto exit;
|
|
if (value && !(valueW = strAtoW( value ))) goto exit;
|
|
|
|
ret = ldap_compareW( ld, dnW, attrW, valueW );
|
|
|
|
exit:
|
|
free( dnW );
|
|
free( attrW );
|
|
free( valueW );
|
|
return ret;
|
|
}
|
|
|
|
/***********************************************************************
|
|
* ldap_compareW (WLDAP32.@)
|
|
*/
|
|
ULONG CDECL ldap_compareW( LDAP *ld, WCHAR *dn, WCHAR *attr, WCHAR *value )
|
|
{
|
|
ULONG msg, ret;
|
|
|
|
TRACE( "(%p, %s, %s, %s)\n", ld, debugstr_w(dn), debugstr_w(attr), debugstr_w(value) );
|
|
|
|
ret = ldap_compare_extW( ld, dn, attr, value, NULL, NULL, NULL, &msg );
|
|
if (ret == WLDAP32_LDAP_SUCCESS) return msg;
|
|
return ~0u;
|
|
}
|
|
|
|
/***********************************************************************
|
|
* ldap_compare_extA (WLDAP32.@)
|
|
*/
|
|
ULONG CDECL ldap_compare_extA( LDAP *ld, char *dn, char *attr, char *value, struct WLDAP32_berval *data,
|
|
LDAPControlA **serverctrls, LDAPControlA **clientctrls, ULONG *message )
|
|
{
|
|
ULONG ret = WLDAP32_LDAP_NO_MEMORY;
|
|
WCHAR *dnW = NULL, *attrW = NULL, *valueW = NULL;
|
|
LDAPControlW **serverctrlsW = NULL, **clientctrlsW = NULL;
|
|
|
|
TRACE( "(%p, %s, %s, %s, %p, %p, %p, %p)\n", ld, debugstr_a(dn), debugstr_a(attr), debugstr_a(value),
|
|
data, serverctrls, clientctrls, message );
|
|
|
|
if (!ld || !message) return WLDAP32_LDAP_PARAM_ERROR;
|
|
if (!attr) return WLDAP32_LDAP_NO_MEMORY;
|
|
|
|
if (dn && !(dnW = strAtoW( dn ))) goto exit;
|
|
if (!(attrW = strAtoW( attr ))) goto exit;
|
|
if (value && !(valueW = strAtoW( value ))) goto exit;
|
|
if (serverctrls && !(serverctrlsW = controlarrayAtoW( serverctrls ))) goto exit;
|
|
if (clientctrls && !(clientctrlsW = controlarrayAtoW( clientctrls ))) goto exit;
|
|
|
|
ret = ldap_compare_extW( ld, dnW, attrW, valueW, data, serverctrlsW, clientctrlsW, message );
|
|
|
|
exit:
|
|
free( dnW );
|
|
free( attrW );
|
|
free( valueW );
|
|
controlarrayfreeW( serverctrlsW );
|
|
controlarrayfreeW( clientctrlsW );
|
|
return ret;
|
|
}
|
|
|
|
/***********************************************************************
|
|
* ldap_compare_extW (WLDAP32.@)
|
|
*/
|
|
ULONG CDECL ldap_compare_extW( LDAP *ld, WCHAR *dn, WCHAR *attr, WCHAR *value, struct WLDAP32_berval *data,
|
|
LDAPControlW **serverctrls, LDAPControlW **clientctrls, ULONG *message )
|
|
{
|
|
ULONG ret;
|
|
char *dnU = NULL, *attrU = NULL, *valueU = NULL;
|
|
LDAPControl **serverctrlsU = NULL, **clientctrlsU = NULL;
|
|
struct berval *dataU = NULL, val = { 0, NULL };
|
|
|
|
TRACE( "(%p, %s, %s, %s, %p, %p, %p, %p)\n", ld, debugstr_w(dn), debugstr_w(attr), debugstr_w(value),
|
|
data, serverctrls, clientctrls, message );
|
|
|
|
if (!ld || !message) return WLDAP32_LDAP_PARAM_ERROR;
|
|
if (!attr) return WLDAP32_LDAP_NO_MEMORY;
|
|
if ((ret = WLDAP32_ldap_connect( ld, NULL ))) return ret;
|
|
|
|
ret = WLDAP32_LDAP_NO_MEMORY;
|
|
if (!(dnU = dn ? strWtoU( dn ) : strdup( "" ))) goto exit;
|
|
if (!(attrU = strWtoU( attr ))) goto exit;
|
|
if (!data)
|
|
{
|
|
if (value)
|
|
{
|
|
if (!(valueU = strWtoU( value ))) goto exit;
|
|
val.bv_len = strlen( valueU );
|
|
val.bv_val = valueU;
|
|
}
|
|
}
|
|
else if (!(dataU = bervalWtoU( data ))) goto exit;
|
|
|
|
if (serverctrls && !(serverctrlsU = controlarrayWtoU( serverctrls ))) goto exit;
|
|
if (clientctrls && !(clientctrlsU = controlarrayWtoU( clientctrls ))) goto exit;
|
|
else
|
|
{
|
|
ret = map_error( ldap_compare_ext( CTX(ld), dnU, attrU, dataU ? dataU : &val, serverctrlsU, clientctrlsU,
|
|
(int *)message ) );
|
|
}
|
|
|
|
exit:
|
|
free( dnU );
|
|
free( attrU );
|
|
free( valueU );
|
|
free( dataU );
|
|
controlarrayfreeU( serverctrlsU );
|
|
controlarrayfreeU( clientctrlsU );
|
|
return ret;
|
|
}
|
|
|
|
/***********************************************************************
|
|
* ldap_compare_ext_sA (WLDAP32.@)
|
|
*/
|
|
ULONG CDECL ldap_compare_ext_sA( LDAP *ld, char *dn, char *attr, char *value, struct WLDAP32_berval *data,
|
|
LDAPControlA **serverctrls, LDAPControlA **clientctrls )
|
|
{
|
|
ULONG ret = WLDAP32_LDAP_NO_MEMORY;
|
|
WCHAR *dnW = NULL, *attrW = NULL, *valueW = NULL;
|
|
LDAPControlW **serverctrlsW = NULL, **clientctrlsW = NULL;
|
|
|
|
TRACE( "(%p, %s, %s, %s, %p, %p, %p)\n", ld, debugstr_a(dn), debugstr_a(attr), debugstr_a(value),
|
|
data, serverctrls, clientctrls );
|
|
|
|
if (!ld) return WLDAP32_LDAP_PARAM_ERROR;
|
|
if (!attr) return LDAP_UNDEFINED_TYPE;
|
|
|
|
if (dn && !(dnW = strAtoW( dn ))) goto exit;
|
|
if (!(attrW = strAtoW( attr ))) goto exit;
|
|
if (value && !(valueW = strAtoW( value ))) goto exit;
|
|
if (serverctrls && !(serverctrlsW = controlarrayAtoW( serverctrls ))) goto exit;
|
|
if (clientctrls && !(clientctrlsW = controlarrayAtoW( clientctrls ))) goto exit;
|
|
|
|
ret = ldap_compare_ext_sW( ld, dnW, attrW, valueW, data, serverctrlsW, clientctrlsW );
|
|
|
|
exit:
|
|
free( dnW );
|
|
free( attrW );
|
|
free( valueW );
|
|
controlarrayfreeW( serverctrlsW );
|
|
controlarrayfreeW( clientctrlsW );
|
|
return ret;
|
|
}
|
|
|
|
/***********************************************************************
|
|
* ldap_compare_ext_sW (WLDAP32.@)
|
|
*/
|
|
ULONG CDECL ldap_compare_ext_sW( LDAP *ld, WCHAR *dn, WCHAR *attr, WCHAR *value, struct WLDAP32_berval *data,
|
|
LDAPControlW **serverctrls, LDAPControlW **clientctrls )
|
|
{
|
|
ULONG ret;
|
|
char *dnU = NULL, *attrU = NULL, *valueU = NULL;
|
|
LDAPControl **serverctrlsU = NULL, **clientctrlsU = NULL;
|
|
struct berval *dataU = NULL, val = { 0, NULL };
|
|
|
|
TRACE( "(%p, %s, %s, %s, %p, %p, %p)\n", ld, debugstr_w(dn), debugstr_w(attr), debugstr_w(value), data,
|
|
serverctrls, clientctrls );
|
|
|
|
if (!ld) return WLDAP32_LDAP_PARAM_ERROR;
|
|
if (!attr) return LDAP_UNDEFINED_TYPE;
|
|
if ((ret = WLDAP32_ldap_connect( ld, NULL ))) return ret;
|
|
|
|
ret = WLDAP32_LDAP_NO_MEMORY;
|
|
if (!(dnU = dn ? strWtoU( dn ) : strdup( "" ))) goto exit;
|
|
if (!(attrU = strWtoU( attr ))) goto exit;
|
|
if (!data)
|
|
{
|
|
if (value)
|
|
{
|
|
if (!(valueU = strWtoU( value ))) goto exit;
|
|
val.bv_len = strlen( valueU );
|
|
val.bv_val = valueU;
|
|
}
|
|
}
|
|
else if (!(dataU = bervalWtoU( data ))) goto exit;
|
|
|
|
if (serverctrls && !(serverctrlsU = controlarrayWtoU( serverctrls ))) goto exit;
|
|
if (clientctrls && !(clientctrlsU = controlarrayWtoU( clientctrls ))) goto exit;
|
|
else
|
|
{
|
|
ret = map_error( ldap_compare_ext_s( CTX(ld), dnU, attrU, dataU ? dataU : &val, serverctrlsU, clientctrlsU ) );
|
|
}
|
|
exit:
|
|
free( dnU );
|
|
free( attrU );
|
|
free( valueU );
|
|
free( dataU );
|
|
controlarrayfreeU( serverctrlsU );
|
|
controlarrayfreeU( clientctrlsU );
|
|
return ret;
|
|
}
|
|
|
|
/***********************************************************************
|
|
* ldap_compare_sA (WLDAP32.@)
|
|
*/
|
|
ULONG CDECL ldap_compare_sA( LDAP *ld, PCHAR dn, PCHAR attr, PCHAR value )
|
|
{
|
|
ULONG ret = WLDAP32_LDAP_NO_MEMORY;
|
|
WCHAR *dnW = NULL, *attrW = NULL, *valueW = NULL;
|
|
|
|
TRACE( "(%p, %s, %s, %s)\n", ld, debugstr_a(dn), debugstr_a(attr), debugstr_a(value) );
|
|
|
|
if (!ld) return WLDAP32_LDAP_PARAM_ERROR;
|
|
if (!attr) return WLDAP32_LDAP_UNDEFINED_TYPE;
|
|
|
|
if (dn && !(dnW = strAtoW( dn ))) goto exit;
|
|
if (!(attrW = strAtoW( attr ))) goto exit;
|
|
if (value && !(valueW = strAtoW( value ))) goto exit;
|
|
|
|
ret = ldap_compare_sW( ld, dnW, attrW, valueW );
|
|
|
|
exit:
|
|
free( dnW );
|
|
free( attrW );
|
|
free( valueW );
|
|
return ret;
|
|
}
|
|
|
|
/***********************************************************************
|
|
* ldap_compare_sW (WLDAP32.@)
|
|
*/
|
|
ULONG CDECL ldap_compare_sW( LDAP *ld, WCHAR *dn, WCHAR *attr, WCHAR *value )
|
|
{
|
|
TRACE( "(%p, %s, %s, %s)\n", ld, debugstr_w(dn), debugstr_w(attr), debugstr_w(value) );
|
|
return ldap_compare_ext_sW( ld, dn, attr, value, NULL, NULL, NULL );
|
|
}
|